floats-147.xht (1563B)
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 more to the right than the right edge of the containing block</title> 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 6 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> 7 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/float/047-demo.html" type="text/html"/> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" /> 9 <link rel="match" href="floats-147-ref.xht" /> 10 11 <style type="text/css"> 12 .outer { width: 15em; background: red; border-left: 1em solid orange; } 13 .container { width: 9em; margin-left: 4em; background: orange; 14 height: 1em; line-height: 1; 15 border: 1em transparent; border-style: none solid; } 16 .float { float: right; width: 14em; background: blue; color: blue; } 17 .control { width: 14em; height: 1em; background: blue; 18 border-left: 1em solid orange; border-right: 1em solid orange; } 19 </style> 20 </head> 21 <body> 22 <p>Test passes if there is a single blue rectangle with a vertical 23 orange stripe on each side.</p> 24 <div class="control"></div> 25 <div class="outer" dir="ltr"> 26 <div class="container"> 27 <div class="float">TEST-LTR</div> 28 </div> 29 </div> 30 <div class="outer" dir="rtl"> 31 <div class="container"> 32 <div class="float">TEST-RTL</div> 33 </div> 34 </div> 35 </body> 36 </html>