flexbox-root-node-001a.html (759B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <!-- This testcase checks that we correctly handle 'display:flex' property on 7 the root <html> element, with the <body> as the sole flex item. --> 8 <html style="display: flex; justify-content: center"> 9 <head> 10 <title>CSS Test: Testing 'display:flex' on root node</title> 11 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 12 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-containers"> 13 <link rel="match" href="flexbox-root-node-001-ref.html"> 14 <style> 15 html { 16 display: flex; 17 justify-content: center; 18 } 19 </style> 20 </head> 21 <body> 22 centered 23 </body> 24 </html>