How To Center a Div

Clock

asked 6 months ago

Messages

0 Answers

Eye

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;
}

0 Answers

Collaborate

Join AskPro to answer this question.

Join the AskPro community to share your knowledge, ask questions, and engage with other users!

Top Questions