Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</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>Eine Überschrift mit einem doppelten unteren Rand.</h2> <p> Ein Absatz mit einem gestrichelten unteren Rand.</p> <div>Ein Element div mit einem unteren Nutrand.</div> </body> </html>