tor-browser

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

flexbox-flex-wrap-flexing-ref.html (457B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4    <title>CSS Flexbox Test: flex-wrap flexes widths after line breaking</title>
      5    <link rel="author" title="Alan Stearns" href="mailto:stearns@adobe.com">
      6    <style>
      7        .container {
      8            width: 150px;
      9            height: 100px;
     10            background: green;
     11        }
     12    </style>
     13 </head>
     14 <body>
     15    <p>Test passes if there is a green rectangle and no red.</p>
     16    <div class="container"></div>
     17 </body>
     18 </html>