Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>The title of the document</title> <style> h2 { padding: 5px; border-bottom-style: ridge; border-bottom-width: thin; border-color: #cccccc; } div { padding: 5px; border-style: ridge; border-bottom-width: thick; } </style> </head> <body> <h2>A heading with thin bottom border</h2> <div>A div element with thick bottom border.</div> </body> </html>