tor-browser

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

flexbox_display.html (504B)


      1 <!DOCTYPE html>
      2 <title>flexbox | display error-handling</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <link rel="help"
      5 href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
      6 <link rel="match" href="flexbox_display-ref.html">
      7 <style>
      8 ul {
      9 background: #3366cc;
     10 padding: 0;
     11 list-style: none;
     12 border: 1px solid black;
     13 
     14 display: flex inline-flex;
     15 }
     16 li {
     17 background: #ffcc00;
     18 margin: 2em;
     19 }
     20 </style>
     21 
     22 <ul>
     23 <li>filler</li>
     24 <li>Antidisestablishmentarianism</li>
     25 </ul>