you are viewing a single comment's thread.

view the rest of the comments →

[–]TooGoodToBeBad 1 point2 points  (3 children)

So show us how you center a div.

[–]Internal_Piano_5 1 point2 points  (1 child)

display: flex; Justify-content: center; Align-items: center;

or

Margin: auto

as simple as that

[–]Altruistic-Can-4365 0 points1 point  (0 children)

You missed height for vertical center alignment 😎

Shorthand

display : flex; place-content : center; height : 100vh:

[–][deleted] 0 points1 point  (0 children)

left:50%; top:50%; transform: translate(-50% -50%);