Sumali sa IDNStudy.com at makuha ang mga sagot ng eksperto. Makakuha ng hakbang-hakbang na mga gabay para sa lahat ng iyong teknikal na tanong mula sa mga miyembro ng aming komunidad.

create an html page that will display an image on the center​

Sagot :

Answer:

To center anything, vertically and horizontally. Wrap it inside a div then style it with css.

html:

<div class="centered-image">

 <img src="path/to/image/here"/>

</div>


css:

.centered-image {

 display: flex;

 justify-content: center;

 align-items: center;

}