Answers for "how to move a section to center"

CSS
3

centre div

<div class="container">
  <div class="child"></div>
</div>
.container {
  ...
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on July-28-2021
3

how to center a div

margin:auto
Posted by: Guest on August-13-2020

Code answers related to "how to move a section to center"

Browse Popular Code Answers by Language