Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/CSS2/margin-padding-clear/margin-bottom-068.xht - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <head>
        <title>CSS Test: Margin-bottom using inches with a nominal value with a plus sign, +1in</title>
        <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-08-14 -->
        <link rel="match" href="margin-bottom-067-ref.xht" />
        <meta name="assert" content="The 'margin-bottom' property sets a nominal length value in inches with a plus sign." />
        <style type="text/css">
            #wrapper
            {
                height: 1.25in;
                border-bottom: 0.25in solid red;
            }
            #div1
            {
                border-bottom: 0.25in solid black;
                margin-bottom: +1in;
            }
            #div2
            {
                border-top: 0.25in solid black;
            }
        </style>
    </head>
    <body>
        <p>Test passes if there is <strong>no red</strong>.</p>
        <div id="wrapper">
            <div id="div1"></div>
            <div id="div2"></div>
        </div>
    </body>
</html>