flex-flow-002-ref.html (564B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Flexbox Test Reference File</title> 4 <link rel="author" title="Intel" href="http://www.intel.com"> 5 <style> 6 div { 7 background-color: green; 8 height: 50px; 9 width: 50px; 10 } 11 .float { 12 margin-left: 50px; 13 margin-top: -50px; 14 } 15 </style> 16 <body> 17 <p>Test passes if there is a filled green square and <strong>no red</strong>, the number within square is '1 2 3 4' 18 from left to right, top to bottom.</p> 19 <div>1</div> 20 <div class="float">2</div> 21 <div>3</div> 22 <div class="float">4</div> 23 </body>