Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> h1, p, div { padding: 10px; } h1 { border-top: 5px solid #8ebf42; } p { border-top: 4px dotted #1c87c9; } div { border-top: thick double #666; } </style> </head> <body> <h1>A heading with a solid green top border</h1> <p>A heading with a dotted blue top border.</p> <div>A div element with a thick double top border.</div> </body> </html>