OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 .first { color:blue; } |
| 4 .second { color:olive; } |
| 5 .third { color:brown; } |
| 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> |
| 8 <div style="-webkit-columns:3; -webkit-column-gap:0; column-fill:auto; width:6em
; line-height:30px; height:90px;"> |
| 9 <div style="-webkit-columns:2; -webkit-column-gap:0;"> |
| 10 <span class="first">S<br></span> |
| 11 <span class="second">T<br></span> |
| 12 <span class="third">B<br></span> |
| 13 <span class="first">E<br></span> |
| 14 <span class="second">H<br></span> |
| 15 <span class="third">E<br></span> |
| 16 <span class="first">R<br></span> |
| 17 <span class="first">V<br></span> |
| 18 <div style="-webkit-column-span:all;" class="second">E</div> |
| 19 <span class="third">E<br></span> |
| 20 <span class="third">R<br></span> |
| 21 <span class="first">E<br></span> |
| 22 </div> |
| 23 </div> |
OLD | NEW |