Answers for "align div central"

CSS
4

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
0

Center div

center{
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 50%;
        }
Posted by: Guest on December-13-2021
2

how to center a div

It's normal to not know how to center a div, just copy and learn from the codes below
Posted by: Guest on August-11-2021

Browse Popular Code Answers by Language