本文介绍了HTML宽度/高度属性和img元素上的CSS width / height属性有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
HTML < img>
元素可以具有宽度 / 高度属性, CSS width / height 属性。
The HTML <img>
element can have the width / height attribute, and it can also have the CSS width / height properties.
<img src="xxx.img" width="16" height="16"
style="width: 16px; height: 16px"></img>
HTML属性和CSS属性之间有什么区别,它们应该具有相同的效果吗?
What's the difference between the HTML attribute and CSS property and should they have the same affect?
推荐答案
关于这个主题的热烈争论可以在这里找到:
A hot debate about the subject can be found here: Width attribute for image tag versus CSS
总结:
这似乎是我认为最有利的效果。
This seems to be the most beneficial effect in my opinion.
这篇关于HTML宽度/高度属性和img元素上的CSS width / height属性有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!