Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I read this article A tale of two viewports

In this article the author writes:

"the CSS layout, especially percentual widths, are calculated relative to the layout viewport"

"The point is: browsers have chosen their dimensions of the layout viewport such that it completely covers the screen in fully zoomed-out mode (and is thus equal to the visual viewport)."

I do not understand the following paragraph :

"Now what you could try is setting html {width: 320px}. Now the element shrinks, and with it all other elements, which now take 100% of 320px. This works when the user zooms in, but not initially, when the user is confronted with a zoomed-out page that mostly contains nothing"

If the screen size of device is around 320 pixels so is the layout viewport and if the css width for the html element is set to 320px why does element shrinks ?

Thanks

enter image description here

share|improve this question

1 Answer

up vote 2 down vote accepted

If the screen size of device is around 320 pixels so is the layout viewport and if the css width for the html element is set to 320px why does element shrinks ?

you have a default viewport of ca 980px on your mobile device, if you do not reset it with the meta-tag <meta name="viewport" content="width=device-width"> (or any addition to that).

A mobile browser auto scales your page so the size of 980px fits the screen, making your 320px only a third of that.

share|improve this answer
Thank you for your good answer. – ProgNet May 29 '12 at 13:40
Thank you for your good answer. So the following : "the CSS layout, especially percentual widths, are calculated relative to the layout viewport" relate to original layout viewport (980px)and not to the new one of 320px : Am I right ? (zoom affects only the visual viewport) – ProgNet May 29 '12 at 13:47
erm, yes. it is recommended to adjust the viewport to the device-width to prevent glitches. but if you do adjust the viewport, thats the viewport that is used for calculations. – Bastian Rang May 29 '12 at 13:51
Thank you.What was confusing in the article for me was : "browsers have chosen their dimensions of the layout viewport such that is equal to the the visual viewport" Layout viewport not supposed to change once they are determined .I have thought that CSS width is compered against this initial fixed value of 320px of Layout viewport. – ProgNet May 29 '12 at 14:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.