I need to center an image inside a div, tried
text-align: center;
align-content: center;
align-items: center;
and many variations of such, with no luck.
It turns out I need to use
margin-left: auto;
margin-right: auto;
to center an image or other block.
No comments:
Post a Comment