tor-browser

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

flexbox_generated.html (512B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flexcontainer vs 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-ref.html">
      6 <style>
      7 div {
      8 background: #3366cc;
      9 
     10 display: flex;
     11 }
     12 div::after, p {
     13 content: "xxx";
     14 background: yellow;
     15 margin: 1em;
     16 width: 200px;
     17 height: 2em;
     18 }
     19 div::after {
     20 content: "yyy";
     21 display: block;
     22 }
     23 </style>
     24 
     25 <div>
     26 <p>FAIL</p>
     27 </div>