OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 onload = function() { |
| 4 document.body.offsetTop; // trigger layout |
| 5 document.getElementById('elm').className = "x"; |
| 6 } |
| 7 </script> |
| 8 <style> |
| 9 .x::before, .x::after { display:block; -webkit-column-span:all; column-span:
all; background:yellow; content:".........."; } |
| 10 </style> |
| 11 <p>There should be three rectangles with identical sizes below. The first and th
ird one |
| 12 should be yellow with some dots inside. The second one should be blue with n
othing |
| 13 inside.</p> |
| 14 <div style="-webkit-columns:4; columns:4; orphans:1; widows:1; line-height:100px
; background:blue;"> |
| 15 <span id="elm"> </span> |
| 16 </div> |
OLD | NEW |