legend-auto-margins.html (871B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>legend inline auto margins</title> 5 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1488301"> 6 <link rel="match" href="legend-auto-margins-ref.html"> 7 <style> 8 body, html { padding:0; margin: 0; } 9 fieldset { 10 border: 1px solid black; 11 border-width: 10px 17px 7px 23px; 12 padding: 0 17px 0 31px; 13 margin: 0; 14 width: 400px; 15 } 16 legend { 17 width: 200px; 18 height: 20px; 19 padding: 0; 20 margin: 0; 21 background: grey; 22 } 23 </style> 24 </head> 25 <body> 26 <fieldset><legend style="margin-left:auto"></legend></fieldset> 27 <fieldset><legend style="margin-right:auto"></legend></fieldset> 28 <fieldset><legend style="margin:0 auto"></legend></fieldset> 29 <fieldset><legend style="margin:0 15px 0 auto"></legend></fieldset> 30 <fieldset><legend style="margin:0 auto 0 15px"></legend></fieldset> 31 </body> 32 </html>