5 <meta name=
"viewport" content=
"width=800">
7 html { font-size:
16px; }
8 body { width:
800px; margin:
0; overflow-y: hidden; }
14 <div style=
"position: fixed; top: 0; left: 0; right: 0">
15 This text should not be autosized (its computed font size should remain
16px), since the position:fixed causes it to be considered to have constrained height.
<br>
16 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
17 <div style=
"float: left; width: 100%; font-size: 2.5rem">
18 This text should be autosized to
40px computed font size, since it is within a float:left, so constrained height is no longer a concern.
<br>
19 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.
23 <div style=
"position: absolute; bottom: 0; left: 0; right: 0">
24 This text should not be autosized (its computed font size should remain
16px), since the position:absolute causes it to be considered to have constrained height.
<br>
25 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
26 <div style=
"overflow: auto; font-size: 2.5rem">
27 This text should be autosized to
40px computed font size, since it is within an overflow:auto, so constrained height is no longer a concern.
<br>
28 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.