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