c414-flt-002

Replaced Float Alignment to Containing Block Edges

WeasyPrint

This browser

Flags
image

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3  <head>
 4   <title>CSS Test: Replaced Float Alignment to Containing Block Edges</title>
 5   <meta name="flags" content="image">
 6   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#floating-elements">
 7   <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
 8   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
 9   <style type="text/css">
10    p { color: navy; }
11    .test div { margin: 1em; padding: 0 0 0.5em; border: 0.5em solid; border-bottom: none; background: navy; color: blue; }
12    .test img { width: 10em; background: red; color: yellow; }
13    .test img.left { float: left; }
14    .test img.right { float: right; }
15   </style>
16   <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property">
17  </head>
18  <body>
19   <p>In the following test, the teal squares must be just inside the
20   top and sides of the blue rectangle.</p>
21   <div class="test">
22    <div>
23     <img src="support/square-teal.png" alt="FAIL: You need image support." class="left">
24     <img src="support/square-teal.png" alt="FAIL: You need image support." class="right">
25     Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle.
26     Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle. Blue rectangle.
27    </div>
28   </div>
29  </body>
30 </html>