Answers for "centered image w3schools"

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

Browse Popular Code Answers by Language