It is Legal to use this code:
<img src="...(here image)...." width="50px" height="50px" />
Or I need to use:
<img src="...(here image)..." style="width: 50px; height: 50px;" />
|
|
|
First use is recommended as hints for the browser's rendering, second one works. In the first form you don't have to add 'px'. |
||||
|
According to the HTML 5 specification:
Source: http://www.w3.org/TR/html5/the-map-element.html#dimension-attributes Also according to the HTML 5 specification, all elements may have style attributes. Source: http://www.w3.org/TR/html5/elements.html#the-style-attribute Therefore, since both are allowed, you are free to choose whichever one suits your fancy. |
|||
|
The style= way is preferred...actually it would be even better if you moved that styling out into a css file or a style tag in your header. |
|||||||||
|
|
CSS applied to 'img' will overwrite basic html width & height attributes on image tags.
The above will result in an image that stretches across the entire width of it's container and it's height will be relational to it's width. This approach is helpful if you're loading retina-appropriate graphics from the get-go. |
|||
|
|