Image align attribute in HTML 5

前端 未结 1 1495
遥遥无期
遥遥无期 2021-01-01 19:10

As align attribute has been deprecated. What is replacement of in HTML 5?

相关标签:
1条回答
  • 2021-01-01 19:39

    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

    0 讨论(0)
提交回复
热议问题