Reputation: 13866
As align attribute has been deprecated. What is replacement of <img align="middle">
in HTML 5?
Upvotes: 17
Views: 59046
Reputation: 31141
Use CSS's vertical-align
property, specifically vertical-align: middle
<img src="image.png" style="vertical-align:middle" />
See this page for more information on Aligning inline images with the vertical-align property
Upvotes: 19