Answers for "center an image horizontally and vertically"

C#
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

Code answers related to "center an image horizontally and vertically"

C# Answers by Framework

Browse Popular Code Answers by Language