tor-browser

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

flexbox-dyn-changeContent-1-ref.html (417B)


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