OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 .container { |
| 4 overflow-x: auto; |
| 5 float: left; |
| 6 width: 5em; |
| 7 height: 5em; |
| 8 line-height: 2em; |
| 9 margin: 2px; |
| 10 border: 1px solid hotpink; |
| 11 } |
| 12 .filler { width:200%; height:1px; } |
| 13 </style> |
| 14 <p>There should be 7 boxes below. Each should contain the word "PASS" |
| 15 once, and no "FAIL". Scrollbars may or may not be present. The |
| 16 exact position of the word "PASS" will vary from box to box.</p> |
| 17 <div class="container"> |
| 18 <div>PASS<br></div> |
| 19 <div class="filler"></div> |
| 20 </div> |
| 21 <div class="container"> |
| 22 <div style="break-after:page;">PASS<br></div> |
| 23 <div class="filler"></div> |
| 24 </div> |
| 25 <div class="container"> |
| 26 <br>PASS |
| 27 </div> |
| 28 <div class="container"> |
| 29 <br>PASS |
| 30 </div> |
| 31 <div class="container"> |
| 32 PASS<br> |
| 33 <div class="filler"></div> |
| 34 </div> |
| 35 <div class="container"> |
| 36 PASS<br> |
| 37 <div class="filler"></div> |
| 38 </div> |
| 39 <div class="container"> |
| 40 <br> |
| 41 PASS<br> |
| 42 <div class="filler"></div> |
| 43 </div> |
OLD | NEW |