float-lft-orthog-vlr-in-htb-002-ref.xht (1048B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 5 <head> 6 7 <title>CSS Reftest Reference</title> 8 9 <meta name="DC.date.created" content="2017-02-17T09:54:03+11:00" scheme="W3CDTF" /> 10 <meta name="DC.date.modified" content="2017-02-17T09:54:03+11:00" scheme="W3CDTF" /> 11 12 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 13 14 15 <style type="text/css"><![CDATA[ 16 div#horiz-parent 17 { 18 border: orange solid 8px; 19 font-size: 32px; 20 line-height: 1.25; /* computes to 40px */ 21 } 22 23 div#orthog-vert 24 { 25 background-color: blue; 26 color: white; 27 left: 16px; 28 position: absolute; 29 writing-mode: vertical-lr; 30 } 31 32 span 33 { 34 left: 40px; 35 position: relative; 36 } 37 ]]></style> 38 39 </head> 40 41 <body> 42 43 <div id="horiz-parent"> 44 <div id="orthog-vert">VLR floated left</div> 45 <span>HTB parent</span> 46 </div> 47 48 </body> 49 </html>