tor-browser

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

flexbox_generated-flex.html (478B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flexcontainer via generated content</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
      5 <link rel="match" href="flexbox_generated-flex-ref.html">
      6 <style>
      7 div {
      8 background: #3366cc;
      9 border: 1px solid black;
     10 }
     11 div::after {
     12 content: "xxx";
     13 background: yellow;
     14 margin: 1em;
     15 width: 200px;
     16 height: 2em;
     17 display: flex;
     18 }
     19 </style>
     20 
     21 <div>
     22 </div>