CSS centering things vertically

displayflex;
align-itemscenter;
justify-content: center;

Remember to auto add prefixes when compiling.

Or.

position: relative;
top: 50%;
transform: translateY(-50%);

Leave a comment

Your email address will not be published. Required fields are marked *