How To Center a Div
asked 6 months ago
0 Answers
8 Views
If we want to center an element horizontally, we can do so using margins set to the special value auto
:
.element {
max-width: fit-content;
margin-left: auto;
margin-right: auto;
}
asked 6 months ago
0 Answers
8 Views
If we want to center an element horizontally, we can do so using margins set to the special value auto
:
.element {
max-width: fit-content;
margin-left: auto;
margin-right: auto;
}