order-painting.html (648B)
1 <!DOCTYPE html> 2 <html> 3 <title>CSS Flexbox: painting order.</title> 4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#order-property"> 5 <link rel="match" href="reference/order-painting-ref.html"> 6 <meta name="assert" content="This test ensures that the 'order' style properly changes the paint order of flex items."/> 7 <body> 8 <p>This test passes if there is no red showing.</p> 9 10 <div style="display: flex; width: 100px;"> 11 <div style="order: 2; background-color: green; width: 100px; height: 100px; margin-left: -50px;"></div> 12 <div style="order: 1; background-color: red; width: 50px; height: 100px;"></div> 13 </div> 14 </body> 15 </html>