bottom-008

Bottom using pixels with a positive nominal value, +96px

WeasyPrint

This browser

Assertion
The 'bottom' property sets a positive nominal length value in pixels.

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: Bottom using pixels with a positive nominal value, +96px</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-bottom">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#position-props">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'bottom' property sets a positive nominal length value in pixels.">
10         <style type="text/css">
11             #div1
12             {
13                 border-top: 3px solid red;
14                 position: relative;
15             }
16             #div2
17             {
18                 border-top: 3px solid black;
19                 margin-top: 93px;
20                 bottom: +96px;
21                 position: relative;
22             }
23         </style>
24     </head>
25     <body>
26         <p>Test passes if there is no red visible on the page.</p>
27         <div id="div1">
28             <div id="div2"></div>
29         </div>
30     </body>
31 </html>