clear-002

Clear set to 'right'

WeasyPrint

This browser

Assertion
The 'clear' property set to a value of 'right' positions the current element to clear right-floated elements.

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: Clear set to 'right'</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-clear">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#flow-control">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'clear' property set to a value of 'right' positions the current element to clear right-floated elements.">
10         <style type="text/css">
11             #div1
12             {
13                 width: 500px;
14             }
15             div div
16             {
17                 float: right;
18                 height: 1in;
19                 width: 1in;
20             }
21             #div2
22             {
23                 background: blue;
24             }
25             #div3
26             {
27                 background: orange;
28                 clear: right;
29             }
30         </style>
31     </head>
32     <body>
33         <p>Test passes if there is an orange box below a blue box.</p>
34         <div id="div1">
35             <div id="div2"></div>
36             <div id="div3"></div>
37         </div>
38     </body>
39 </html>