Answers for "center the content in div"

CSS
44

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

center div content

**HTML**
<div class="container">
  <div class="child"></div>
</div>

**CSS**
.container {
  position: relative;
}

.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on March-02-2022

Browse Popular Code Answers by Language