border-bottom-width-014

Border-bottom-width using points with a minimum plus one value, 1pt

WeasyPrint

This browser

Assertion
The 'border-bottom-width' property supports a minimum plus one length value in points that sets the width of the bottom border.

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: Border-bottom-width using points with a minimum plus one value, 1pt</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-border-bottom-width">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-width-properties">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'border-bottom-width' property supports a minimum plus one length value in points that sets the width of the bottom border.">
10         <style type="text/css">
11             #wrapper
12             {
13                 background: red;
14                 height: 1pt;
15             }
16             #test
17             {
18                 border-bottom-style: solid;
19                 border-bottom-width: 1pt;
20                 height: 0;
21             }
22             p
23             {
24                 height: 40px;
25             }
26         </style>
27     </head>
28     <body>
29         <p>Test passes if there is a line below and there is no red visible on the page.</p>
30         <div id="wrapper">
31             <div id="test"></div>
32         </div>
33     </body>
34 </html>