legend-float.html (480B)
1 <!doctype html> 2 <title>floated legend should not disappear</title> 3 <link rel=match href=legend-float-ref.html> 4 <style> 5 fieldset { margin: 0; padding: 0; border: none; width: 100px; height: 50px; background: red; } 6 legend { width: 100px; height: 50px; background: lime; padding: 0; } 7 .left { float: left; } 8 .right { float: right; } 9 </style> 10 <p>There should be no red.</p> 11 <fieldset><legend class=left></legend></fieldset> 12 <fieldset><legend class=right></legend></fieldset>