Answers for "how to align to the center a div"

CSS
4

div align center

.center {
  text-align: center;
}

// or

<div style="text-align:center">
</div>
Posted by: Guest on February-17-2021
0

how to center a div

.container {
  ...
  display: flex;
  justify-content: center;
}
Posted by: Guest on February-02-2021

Code answers related to "how to align to the center a div"

Browse Popular Code Answers by Language