| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
| <html> |
| <head> |
| <title>CSS 2.1 Test Suite: border-width</title> |
| <style type="text/css"> |
| .two {border-width: thick; border-style: solid;} |
| .three {border-width: medium; border-style: solid;} |
| .four {border-width: thin; border-style: solid;} |
| </style> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties"> |
| </head> |
| <body> |
| <p>The three boxes below should have progressively thinner borders.</p> |
| <p class="two"> |
| A |
| </p> |
| <p class="three"> |
| B |
| </p> |
| <p class="four"> |
| C |
| </p> |
| </body> |
| </html> |