Answers for "how to align image horizontally center and verticall in html"

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 "how to align image horizontally center and verticall in html"

C# Answers by Framework

Browse Popular Code Answers by Language