OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .first { color:blue; } | 3 .first { color:blue; } |
4 .second { color:olive; } | 4 .second { color:olive; } |
5 .third { color:brown; } | 5 .third { color:brown; } |
6 </style> | 6 </style> |
7 <p>There should be three lines of text below, with large letter spacing. The tex
t on the first line should be blue, the ones on the second should be olive, and
the ones on the third should be brown.</p> | 7 <p>There should be three lines of text below, with large letter spacing. The tex
t on the first line should be blue, the ones on the second should be olive, and
the ones on the third should be brown.</p> |
8 <div style="-webkit-columns:3; -webkit-column-gap:0; column-fill:auto; width:6em
; line-height:30px; height:90px;"> | 8 <div style="-webkit-columns:3; -webkit-column-gap:0; column-fill:auto; width:6em
; line-height:30px; height:90px; orphans:1; widows:1;"> |
9 <div style="-webkit-columns:2; -webkit-column-gap:0;"> | 9 <div style="-webkit-columns:2; -webkit-column-gap:0;"> |
10 <span class="first">S<br></span> | 10 <span class="first">S<br></span> |
11 <span class="second">T<br></span> | 11 <span class="second">T<br></span> |
12 <span class="third">B<br></span> | 12 <span class="third">B<br></span> |
13 <span class="first">E<br></span> | 13 <span class="first">E<br></span> |
14 <span class="second">H<br></span> | 14 <span class="second">H<br></span> |
15 <span class="third">E<br></span> | 15 <span class="third">E<br></span> |
16 <span class="first">R<br></span> | 16 <span class="first">R<br></span> |
17 <span class="first">V<br></span> | 17 <span class="first">V<br></span> |
18 <div style="-webkit-column-span:all;" class="second">E</div> | 18 <div style="-webkit-column-span:all;" class="second">E</div> |
19 <span class="third">E<br></span> | 19 <span class="third">E<br></span> |
20 <span class="third">R<br></span> | 20 <span class="third">R<br></span> |
21 <span class="first">E<br></span> | 21 <span class="first">E<br></span> |
22 </div> | 22 </div> |
23 </div> | 23 </div> |
OLD | NEW |