OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 | 4 |
5 <meta name="viewport" content="width=800"> | 5 <meta name="viewport" content="width=800"> |
6 <style> | 6 <style> |
7 html { font-size: 16px; } | 7 html { font-size: 16px; } |
8 body { width: 800px; margin: 0; overflow-y: hidden; } | 8 body { width: 800px; margin: 0; overflow-y: hidden; } |
9 </style> | 9 </style> |
10 | 10 |
11 </head> | 11 </head> |
12 <body> | 12 <body> |
13 | 13 |
14 <div style="font-size: 2.5rem"> | 14 <div style="font-size: 2.5rem"> |
15 This text should all be autosized to 40px computed font-size, since although
this has a narrow child block, the cluster will still be wide and need autosizi
ng. | 15 This text should be autosized to 40px computed font-size, since although thi
s has a narrow child block, the cluster will still be wide and need autosizing. |
16 <div style="width: 320px"> | 16 <div style="width: 600px"> |
| 17 This text should be autosized to 40px computed font-size as it is a part
of the same cluster as the parent div.<br> |
17 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. | 18 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. |
18 </div> | 19 </div> |
| 20 This text should be autosized to 40px computed font-size, similarly to the t
ext at the top.<br> |
19 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tem
por incididunt ut labore et dolore magna aliqua. | 21 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tem
por incididunt ut labore et dolore magna aliqua. |
20 </div> | 22 </div> |
21 | 23 |
22 </body> | 24 </body> |
23 </html> | 25 </html> |
OLD | NEW |