justify-content-001-ref.html (580B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <link rel="author" title="Intel" href="http://www.intel.com"> 5 <style> 6 #blue { 7 background: blue; 8 height: 100px; 9 width: 150px; 10 } 11 #orange { 12 background: orange; 13 height: 100px; 14 left: 150px; 15 position: relative; 16 top: -100px; 17 width: 150px; 18 } 19 </style> 20 <body> 21 <p>Test passes if there is a single blue rectangle on the left, a single orange rectangle directly to its right, and there is no red visible on the page.</p> 22 <div id="blue"></div> 23 <div id="orange"></div> 24 </body>