Answers for "css html how to put a box in the center of a box"

CSS
44

center a div css

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on March-31-2021

Code answers related to "css html how to put a box in the center of a box"

Browse Popular Code Answers by Language