align-content_flex-start.html (1006B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Flexible Box Test: align-content_flex-start</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_flex-start-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 flex-start." /> 10 <style> 11 #test{ 12 height: 200px; 13 width: 80px; 14 display: flex; 15 flex-wrap: wrap; 16 align-content: flex-start; 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 upper left of red rectangle.</p> 24 <div id=log></div> 25 <div id=test><div id=test01>1</div><div id=test02>2</div><div id=test03>3</div></div> 26 </body> 27 </html>