body-fills-html-quirk-vertical.html (481B)
1 <!DOCTYPE quirks-mode> 2 <link rel="help" href="https://quirks.spec.whatwg.org/#the-body-element-fills-the-html-element-quirk"/> 3 <link rel="match" href="body-fills-html-quirk-ref2.html" /> 4 <style> 5 html { 6 width: 200px; 7 height: 200px; 8 writing-mode: vertical-lr; 9 } 10 body { 11 border: solid; 12 margin: 10px 11px 12px 14px; 13 } 14 span { 15 display: inline-block; 16 width: 100px; 17 height: 100px; 18 background: green; 19 } 20 </style> 21 <body> 22 <span></span> 23 </body>