img元素上的align属性已过时。请改用CSS

时间:2014-04-11 19:32:50

标签: html css

<img align="left" src="Logo_CSA.jpg" alt="CSA Logo">

如何在img-tag中删除此问题?当我在w3c验证器中检查我的代码时,我正面临这个问题请问我是解决这个问题的最佳方法吗?

2 个答案:

答案 0 :(得分:4)

align的{​​{1}} attribute在1998年已弃用。等效的CSS为the float property

img

答案 1 :(得分:0)

将style更改为style:

<img style="float: left;" src="Logo_CSA.jpg" alt="CSA Logo">