tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

legend-position-relative-2.html (488B)


      1 <!DOCTYPE html>
      2 <title>legend position: relative</title>
      3 <link ref=help href="http://crbug.com/1151295">
      4 <link rel=match href=legend-position-relative-2-ref.html>
      5 <style>
      6 #fieldset2 {
      7  background: lime;
      8  border: 2px solid lime;
      9  width: 200px;
     10  padding: 0;
     11  margin: 0;
     12  overflow: hidden;
     13 }
     14 #legend2 {
     15  position: relative;
     16  overflow: hidden;
     17  background: #00ffff;
     18 }
     19 </style>
     20 <p>"Legend" should be shown.</p>
     21 <fieldset id="fieldset2"><legend id="legend2">Legend</legend></fieldset>