如果我知道要通过图像标签显示的图像的高度和宽度,我应该包括height和width属性,还是仅将信息放入CSS中?或两者?
例如
<img src="profilepic.jpg" height="64" width="64" />
要么
<img src="profilepic.jpg" height="64" width="64" style="height: 64px; width: 64px;" />
要么
<img src="profilepic.jpg" style="height: 64px; width: 64px;" />