Answers for "html code for image in centre of screen w3schools"

CSS
0

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
1

how to make the image in the center html

/* for text*/
.myClass{
	text-align: center;
}
/* for divs,imgs,etc*/
.myClass{
	margin :auto;
}
/* other cases*/
.myClass{
	justify-content: center;
}
Posted by: Guest on December-31-2021

Browse Popular Code Answers by Language