Answers for "how to center an image in css horizontally and vertically"

0

center an image horizontally and vertically

.center{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
Posted by: Guest on May-03-2020
7

center text in div container

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

Code answers related to "how to center an image in css horizontally and vertically"

Browse Popular Code Answers by Language