The top border of this paragraph has is 1 pixel width, solid and black.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title></title> <style type='text/css'> p { border-top: 1px solid black; } </style> </head> <body> <p> This is a test. </p> </body> </html>