tor-browser

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

flexbox-dyn-changeContent-2-ref.html (490B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="UTF-8">
      5  <style>
      6    #flex {
      7      display: inline-flex;
      8      flex-direction: column;
      9      border: 1px solid black;
     10      max-width: 50px;
     11      height: 150px;
     12    }
     13    #itemA {
     14      background: purple;
     15      height: 50%;
     16      flex: none;
     17    }
     18    #itemB {
     19      background: lightblue;
     20      flex: none;
     21    }
     22  </style>
     23 </head>
     24 <body>
     25  <div id="flex">
     26    <div id="itemA">A</div>
     27    <div id="itemB">BB</div>
     28  </div>
     29 </body>
     30 </html>