legend-block-margins.html (568B)
1 <!doctype html> 2 <title>legend block margins</title> 3 <link rel=match href=legend-block-margins-ref.html> 4 <style> 5 body { margin: 0; } 6 fieldset { margin: 1em; border: 1em solid green; padding: 0; background: white; } 7 legend { margin: 1em 1em 2em 1em; height: 1em; padding: 0; } 8 .inner { margin: 1em; height: 1em; } 9 .behind { position: absolute; left: 1em; right: 1em; margin-top: 1em; height: 7em; background: red; z-index: -1; } 10 </style> 11 <p>There should be no red.</p> 12 <div class=behind></div> 13 <fieldset> 14 <legend>X</legend> 15 <div class=inner>Y</div> 16 </fieldset>