tor-browser

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

align-content_center.html (968B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Flexible Box Test: align-content_center</title>
      5    <link rel="author" title="Intel" href="http://www.intel.com" />
      6    <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#align-content-property" />
      7    <link rel="match" href="reference/align-content_center-ref.html">
      8    <link rel="stylesheet" href="support/test-style.css">
      9    <meta name="assert" content="Check if the web engine can identify the align-content value center." />
     10    <style>
     11      #test{
     12 height: 200px;
     13        width: 80px;
     14        display: flex;
     15 flex-wrap: wrap;
     16 align-content: center;
     17      }
     18    </style>
     19  </head>
     20  <body>
     21    <p>Test passes if:<br>
     22    1. the rectangle 1, 2, 3 show up in a vertical column in a red rectangle and no gap between them.<br>
     23    2. the rectangle 1, 2, 3 appear in middle left of red rectangle.</p>
     24    <div id=test><div id=test01>1</div><div id=test02>2</div><div id=test03>3</div></div>
     25  </body>
     26 </html>