Answers for "how to orientate an image to the center of the screen in html"

2

align image to the center of the screen

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on December-24-2020

Code answers related to "how to orientate an image to the center of the screen in html"

Browse Popular Code Answers by Language