OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .mc { -webkit-columns:2; -webkit-column-gap:0; } | 3 .mc { -webkit-columns:2; -webkit-column-gap:0; orphans:1; widows:1; } |
4 </style> | 4 </style> |
5 <p>Basic test for multicol inside multicol, where the inner multicol crosses col
umn boundaries in | 5 <p>Basic test for multicol inside multicol, where the inner multicol crosses col
umn boundaries in |
6 the outer multicol, so that it has to establish multiple rows / fragmentatio
n groups.</p> | 6 the outer multicol, so that it has to establish multiple rows / fragmentatio
n groups.</p> |
7 <p>Below, the word "PASS" should be seen, with large letter spacing on a lime ba
ckground. No red should be seen.</p> | 7 <p>Below, the word "PASS" should be seen, with large letter spacing on a lime ba
ckground. No red should be seen.</p> |
8 <div class="mc" style="width:4em; background:red;"> | 8 <div class="mc" style="width:4em; background:red;"> |
9 <div> | 9 <div> |
10 <div class="mc" style="background:lime;"> | 10 <div class="mc" style="background:lime;"> |
11 P<br>A<br>S<br>S | 11 P<br>A<br>S<br>S |
12 </div> | 12 </div> |
13 </div> | 13 </div> |
14 </div> | 14 </div> |
OLD | NEW |