OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 .first { color:blue; } |
| 4 .second { color:olive; } |
| 5 .third { color:brown; } |
| 6 .line { clear:both; } |
| 7 .fakeColumn { float: left; width:1em;; } |
| 8 </style> |
| 9 <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> |
| 10 <div style="line-height:30px;"> |
| 11 <div class="line first"> |
| 12 <div class="fakeColumn">S</div> |
| 13 <div class="fakeColumn">E</div> |
| 14 <div class="fakeColumn">R</div> |
| 15 <div class="fakeColumn">V</div> |
| 16 <div class="fakeColumn">E</div> |
| 17 </div> |
| 18 <div class="line second"> |
| 19 <div class="fakeColumn">T</div> |
| 20 <div class="fakeColumn">H</div> |
| 21 <div class="fakeColumn">E</div> |
| 22 </div> |
| 23 <div class="line third"> |
| 24 <div class="fakeColumn">B</div> |
| 25 <div class="fakeColumn">E</div> |
| 26 <div class="fakeColumn">E</div> |
| 27 <div class="fakeColumn">R</div> |
| 28 </div> |
| 29 </div> |
OLD | NEW |