Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>The title of the document</title> <style> h2 { border-bottom-style: groove; border-bottom-width: medium; } div { border-style: groove; border-bottom-width: medium; } </style> </head> <body> <h2>A heading with a medium bottom border.</h2> <div>A div element with a medium bottom border.</div> </body> </html>