Answers for "css center contents of div horizontally"

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 center contents of div horizontally"

Browse Popular Code Answers by Language