Answers for "center using absolute"

CSS
55

position absolute center

.child {
    position: absolute;
    top: 50%;  
    left: 50%; 
    transform: translate(-50%, -50%);
}
Posted by: Guest on July-17-2020
4

center div absolute

#content {
  position: absolute; 
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
  width: 100px; /* Need a specific value to work */
}
Posted by: Guest on February-12-2020
0

center position absolute

position: absolute;
width: XXX; /* <-- !!! */
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
Posted by: Guest on March-17-2021

Browse Popular Code Answers by Language