How much layout space does a web-browser allocate when initially rendering:
< img src="image.jpg" />
How much layout space does a web-browser allocate when initially rendering:
< img src="image.jpg" style="max-height:100px; max-width:200px" />
How much layout space does a web-browser allocate when initially rendering:
< img src="image.jpg" style="min-height:50px; min-width:110px" />
How much layout space does a web-browser allocate when initially rendering:
< img src="image.jpg" height="97" width="134" />
Update:
What I'm trying to determine is if the browser first allocates 0x0 and then scales up the layout once the dimension is obtained OR ... in the cases of using min/max-height/width - does the browser actually allocate that much space and then updates the layout once it has the actual dimensions.