fieldset-containing-block-ref.html (378B)
1 <!DOCTYPE html> 2 <title>Reference for fieldset containing block</title> 3 <style> 4 p { margin: 0; height: 100px } 5 .div1 { position: absolute; top: 108px; width: 100px; height: 100px; background: lime; } 6 .div2 { position: absolute; top: 158px; width: 200px; height: 100px; background: lime; } 7 </style> 8 <p>There should be no red.</p> 9 <div class="div1"></div> 10 <div class="div2"></div>