Answers for "trick to center a div horizontally without flex"

CSS
1

how to center an item without flex

.container{
position: relative;
}
.child{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 50%);
}
Posted by: Guest on September-06-2021
0

how to horizontally center header at the top of page with flexbox css

.box.flex {
  display: flex;
  justify-content: center;
}
Posted by: Guest on February-23-2020

Code answers related to "trick to center a div horizontally without flex"

Browse Popular Code Answers by Language