tor-browser

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

flexbox_generated-nested-flex.html (493B)


      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 display: flex;
     11 }
     12 div::after {
     13 content: "xxx";
     14 background: yellow;
     15 margin: 1em;
     16 width: 200px;
     17 height: 2em;
     18 display: flex;
     19 }
     20 </style>
     21 
     22 <div></div>