display-contents-fieldset-nested-legend.html (901B)
1 <!doctype html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <meta charset="utf-8"> 7 <link rel="match" href="display-contents-fieldset-nested-legend-ref.html"> 8 <link rel="help" href="https://drafts.csswg.org/css-display/#unbox"> 9 <link rel="help" href="https://drafts.csswg.org/css-display/#valdef-display-contents"> 10 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1427292"> 11 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 12 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 13 <title>CSS Test: display: contents on legend</title> 14 <style> 15 fieldset { 16 color: red; 17 } 18 .contents { 19 display: contents; 20 color: green; 21 border: 10px solid red; 22 unicode-bidi: normal; 23 } 24 </style> 25 <fieldset><legend class="contents">P<legend>legend</legend>ASS</legend></fieldset>