4 <meta name=
"viewport" content=
"width=800">
6 html { font-size:
16px; }
7 body { width:
800px; margin:
0; overflow: hidden; }
8 #pseudo1:first-letter { font-size:
32px; color: red; }
9 #pseudo2::before { font-size:
32px; content:
"Before!"; color: green; }
10 #pseudo2::after { font-size:
32px; content:
"After!"; color: blue; }
13 <script src=
"resources/autosizingTest.js"></script>
16 <div id=
"pseudo1">This sentence should start with a big letter 'T' for the first letter in the color red. There should be enough text for the sentence to autosize.
</div>
17 <div id=
"pseudo2">This text should have the word 'Before!' in big text in the color green before it and the word 'After!' in big text in the color blue after it.
</div>