The HTML tag img can have width and height property, while it can also have CSS style width and height.
<img src="xxx.img" width="16" height="16"
style="width: 16px; height: 16px"></img>
What's the difference between the HTML property and CSS attributes? Should they have same effects?