Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du 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>Un titre avec une double bordure inférieure.</h2> <p> Un paragraphe avec une bordure inférieure en pointillé(dotted). </p> <div>Un élément div avec une bordure inférieure groove.</div> </body> </html>