c5515-brdr-w-000

border-width

WeasyPrint

This browser

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-width</title>
 5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#border-width">
 6   <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
 7   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
 8   <style type="text/css">
 9    .two {border-width: thick; border-style: solid;}
10    .three {border-width: medium; border-style: solid;}
11    .four {border-width: thin; border-style: solid;}
12   </style>
13   <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
14  </head>
15  <body>
16   <p>The three boxes below should have progressively thinner borders.</p>
17   <p class="two">
18    A
19   </p>
20   <p class="three">
21    B
22   </p>
23   <p class="four">
24    C
25   </p>
26  </body>
27 </html>