OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script> | |
3 onload = function() { | |
4 var elm = document.getElementById('elm'); | |
5 document.body.offsetTop; // trigger layout | |
6 elm.style.display = 'block'; | |
7 } | |
8 </script> | |
9 <p>There should be two lines below with the word "PASS". Letter spacing is expec ted to | |
10 vary. The first word should be in <span style="color:blue;">blue</span>. The sec ond one | |
11 in <span style="color:olive;">olive</span>.</p> | |
12 <div style="float:left; overflow:hidden;"> | |
13 <div style="-webkit-columns:5; columns:5; column-gap:0; -webkit-column-gap:0 ; orphans:1; widows:1; color:olive;"> | |
14 <div id="elm" style="display:none; -webkit-column-span:all; column-span: all; color:blue;">PASS</div> | |
15 P<br>A<br>S<br>S | |
16 </div> | |
17 </div> | |
OLD | NEW |