Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> body { background: #eee; font-size: 20px; text-align: center; } main div { display: flex; align-items: center; justify-content: center; color: black; padding-top: 30px; padding-bottom: 30px; width: 200px; height: 100px; margin: 15px; font-weight: bold; background-color: #c9c5c5; border: 8px solid #1c87c9; } .flex-center { display: flex; justify-content: center; } /* border-style example classes */ .b1 { border-style: hidden; } .b2 { border-style: dotted;} .b3 { border-style: dashed;} .b4 { border-style: solid;} .b5 { border-style: double;} .b6 {border-style: groove;} .b7 {border-style: ridge;} .b8 {border-style: inset;} .b9 {border-style: outset;} </style> </head> <body> <h2>Ein Beispiel für border-style</h2> <main class="flex-center"> <div class="b1"> hidden </div> <div class="b2"> dotted </div> <div class="b3"> dashed </div> </main> <main class="flex-center"> <div class="b4"> solid </div> <div class="b5"> double </div> <div class="b6"> groove </div> </main> <main class="flex-center"> <div class="b7"> ridge </div> <div class="b8"> inset </div> <div class="b9"> outset </div> </main> </body> </html>