OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 #elm::before, #elm::after { display:block; -webkit-column-span:all; column-s pan:all; background:yellow; content:".........."; } | |
4 </style> | |
5 <p>There should be five rectangles with identical sizes below. The first, third and fifth | |
6 one should be blue with nothing inside. The second and fourth one should be yellow with some | |
7 dots inside.</p> | |
8 <div style="-webkit-columns:4; columns:4; orphans:1; widows:1; line-height:100px ; background:blue;"> | |
9 | |
10 <span id="elm"> </span> | |
11 | |
12 </div> | |
OLD | NEW |