Abhijeet
Abhijeet

Reputation: 13866

Image align attribute in HTML 5

As align attribute has been deprecated. What is replacement of <img align="middle"> in HTML 5?

Upvotes: 17

Views: 59046

Answers (1)

sachleen
sachleen

Reputation: 31141

Use CSS's vertical-align property, specifically vertical-align: middle

<img src="image.png" style="vertical-align:middle" />

Demo

See this page for more information on Aligning inline images with the vertical-align property

Upvotes: 19

Related Questions