Answers for "how to make content of any div in center"

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
7

center text in div container

text-align: center
Posted by: Guest on June-01-2020

Code answers related to "how to make content of any div in center"

Browse Popular Code Answers by Language