DEV Community

Discussion on: 1 line css to center object

Collapse
 
kdgyimah profile image
Kingsley Gyimah

Sure this works, but for only one axis.
You would have to add 'justify-content: center' also to ensure it remains centered on both x and y-axis (horizontal and vertical).

That is:
// This is absolutely centered!
div {
display:flex;
align-items:center;
justify-content: center
}