margin-top-112

Margin-top with a value of 'auto'

WeasyPrint

This browser

Assertion
The 'margin-top' property sets a value of 'auto'.

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: Margin-top 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-top">
 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-top' property sets a value of 'auto'.">
10         <style type="text/css">
11             #div1
12             {
13                 border-top: 5px solid blue;
14             }
15             #div2
16             {
17                 border-top: 5px solid orange;
18                 margin-top: auto;
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>