Answers for "how to put something in the center of a div"

CSS
37

how to center a div in css

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on March-31-2021
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 put something in the center of a div"

Browse Popular Code Answers by Language