Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> h2 { border-bottom: 5px dashed #1c87c9; } p { border-bottom: 8px double #8ebf42; } div { border-bottom: 10px ridge #ccc; } </style> </head> <body> <h2>A heading with a dashed blue bottom border.</h2> <p>A paragraph with a double green bottom border.</p> <div>A div element with a ridge gray bottom border.</div> </body> </html>