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: Margin-bottom with a value of 'auto'</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-margin-bottom">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#margin-properties">
8 <meta name="flags" content="">
9 <meta name="assert" content="The 'margin-bottom' property sets a value of 'auto'.">
10 <style type="text/css">
11 #div1
12 {
13 border-bottom: 5px solid blue;
14 margin-bottom: auto;
15 }
16 #div2
17 {
18 border-top: 5px solid orange;
19 }
20 </style>
21 </head>
22 <body>
23 <p>Test passes if there is no space between the blue and orange lines below.</p>
24 <div id="div1"></div>
25 <div id="div2"></div>
26 </body>
27 </html>