Answers for "center a div on a page vertically and horizontally"

CSS
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
1

how to center a position fixed element horizontally

left: 50%;
margin-left: -400px; /* Half of the width */
Posted by: Guest on April-12-2020

Code answers related to "center a div on a page vertically and horizontally"

Browse Popular Code Answers by Language