Answers for "move div to center horizontally"

CSS
0

vertically and horizontally center a fixed div

// you dont need to know the divs dimensions and it does not require any container divs
position: fixed; 
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
Posted by: Guest on August-20-2020
9

center div horizontally and vertically

.parent {
  position: relative;
}
.child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on June-22-2020

Code answers related to "move div to center horizontally"

Browse Popular Code Answers by Language