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 'both'</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 'both' positions the current element to clear both left- and right-floated elements.">
10 <style type="text/css">
11 #div1
12 {
13 width: 2in;
14 }
15 div div
16 {
17 height: 1in;
18 width: 1in;
19 }
20 #div2
21 {
22 background: blue;
23 float: left;
24 }
25 #div3
26 {
27 float: right;
28 background: orange;
29 height: 1.5in;
30 }
31 #div4
32 {
33 background: black;
34 clear: both;
35 }
36 </style>
37 </head>
38 <body>
39 <p>Test passes if there is a black box below the blue and orange boxes.</p>
40 <div id="div1">
41 <div id="div2"></div>
42 <div id="div3"></div>
43 <div id="div4"></div>
44 </div>
45 </body>
46 </html>