Answers for "how to put div in the center of div"

CSS
31

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
3

how to center a div

It's normal to not know how to center a div, just copy and learn from the codes below
Posted by: Guest on August-11-2021

Code answers related to "how to put div in the center of div"

Browse Popular Code Answers by Language