Does adding width and height to inline images increase the page load performance?
Posted
by metal-gear-solid
on Stack Overflow
See other posts from Stack Overflow
or by metal-gear-solid
Published on 2010-05-01T01:53:46Z
Indexed on
2010/05/01
1:57 UTC
Read the original article
Hit count: 380
Does adding width and height to inline images increase the page load performance?
<img id="moon" height="200" width="450"
src="http://www.domain.com/moon.png" alt="moon image" />
Compare to this
<img id="moon" src="http://www.domain.com/moon.png" alt="moon image" />
© Stack Overflow or respective owner