Posts by Rodrigo Carioca • 98 points
3 posts
-
0
votes3
answers1026
viewsA: How to make an element with position Fixed stop "cutting" its contents when resizing?
"... so I can’t have a responsive menu, the idea is that the horizontal scrollbar exists, but as shown in the image the header content does not accompany this bar, to better understand see:…
-
3
votes2
answers5915
viewsA: How to leave a span in the center of a div both vertically and horizontally
You could also, instead of using all the code mentioned above, define your div as this below: div{ display:flex; justify-content:center; align-items: center; /*Abaixo definições para visualização…
-
5
votes3
answers2237
viewsQ: Change column to indentity using T-SQL in SQL Server
I need to change an existing column in a table so that it stays with the property identity using T-SQL and then entering data into this table. The column already contains data and after this…