H B*_*amy 7 css height attributes image width
我想知道以下哪个更好用,或者通常更好:
<img src = "foo.png" height = 32 width = 32 />
Run Code Online (Sandbox Code Playgroud)
要么
<img src = "foo.png" style = "height: 32px; width: 32px;" />
Run Code Online (Sandbox Code Playgroud)
后者更好(更多up2date).
<img src="foo.png" style="height:32px; width:32px;" />
Run Code Online (Sandbox Code Playgroud)