Answers for "how to align element to the center of a box in html"

CSS
0

center a div

.parent {
	display : flex;
    justify-content : center;
    align-items : center;
}
Posted by: Guest on January-23-2022
0

how to center a div

<center>
  <div> YOUR DIV </div>
</center>
Posted by: Guest on January-30-2022

Code answers related to "how to align element to the center of a box in html"

Browse Popular Code Answers by Language