tor-browser

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

fieldset-003.html (783B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Ana Sollano Kim" href="mailto:ansollan@microsoft.com">
      3 <link rel="help" href="https://www.w3.org/TR/css-break-3/#break-decoration">
      4 <link rel="match" href="fieldset-003-ref.html">
      5 <p>There should be a light blue fieldset that starts in the first column and
      6  ends in the third. Its blue violet legend should only be in the first column,
      7  consuming the top border. The bottom border should only be in the third column.
      8 </p>
      9 <div style="column-count:3; column-fill:auto; column-gap:10px; width: 680px; height:40px;">
     10  <fieldset style="margin:0; border:60px solid pink; padding:0; width:100px; background:lightblue; height:10px;">
     11    <legend style="padding:0; width:100px; height:50px; background:blueviolet;"></legend>
     12  </fieldset>
     13 </div>