floats-146.xht (1185B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Floats: No higher than earlier floats</title> 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-04-05 --> 7 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/float/046.html" type="text/html"/> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" /> 9 <link rel="match" href="floats-146-ref.xht" /> 10 11 <style type="text/css"> 12 p { color: blue; } 13 .container { font-size: 20px; width: 20em; } 14 .float { padding: 0.2em; margin: 0.2em; border: 1px solid; } 15 .a { color: fuchsia; width: 12em; float: left; } 16 .b { color: orange; width: 14em; float: left; } 17 .c { color: orange; width: 4em; float: right; } 18 </style> 19 </head> 20 <body> 21 <p>C must not be above B.</p> 22 <div class="container"> 23 <div class="float a">A</div> 24 <div class="float b">B</div> 25 <div class="float c">C</div> 26 </div> 27 </body> 28 </html>