OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 .container { width:300px; text-align:center; color:white; } |
| 4 .box { float:left; width:100px; line-height:50px; height:100px; } |
| 5 .green { background:green; } |
| 6 </style> |
| 7 <p>Test that an inner multicol that's also a spanner is rendered correctly.</p> |
| 8 <p>There should be a green cross below. The word "PASS" should be seen on its ri
ght arm.</p> |
| 9 <div class="container"> |
| 10 <div class="box"></div> |
| 11 <div class="box green"></div> |
| 12 <div class="box"></div> |
| 13 <div class="box green"></div> |
| 14 <div class="box green"></div> |
| 15 <div class="box green"><br>PASS</div> |
| 16 <div class="box"></div> |
| 17 <div class="box green"></div> |
| 18 <div class="box"></div> |
| 19 </div> |
OLD | NEW |