tor-browser

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

696739-1.html (448B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style>
      5 fieldset {
      6  display: inline; background: rgba(255, 255, 0, 0.7); color: black;
      7 }
      8 div { background: green; }
      9 div#one { float: left; }
     10 </style>
     11 </head>
     12 <body>
     13  <form>
     14    <fieldset>
     15      <div id="one">I should be black text on a green background</div>
     16    </fieldset>
     17    <fieldset>
     18      <div>I should be black text on a green background</div>
     19    </fieldset>
     20  </form>
     21 </body>
     22 </html>