Answers for "how to center align an image html"

CSS
-1

html center image

<div class="verticalhorizontal">
    <img src="image.jpg" alt="centered image" />
</div>

<style>
.verticalhorizontal {
    display: table-cell;
    height: 300px;
    text-align: center;
    width: 300px;
    vertical-align: middle;
}
</style>
Posted by: Guest on October-06-2021
0

how to make a picture center in html

<center>//The thing you want to center</center>
Posted by: Guest on January-29-2022

Code answers related to "how to center align an image html"

Browse Popular Code Answers by Language