Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> span { border: 3px solid #8ebf42; padding: 0em 1em; border-radius: 12px; font-size: 20px; line-height: 2; background-color: #ccc; } span.ex2 { -webkit-box-decoration-break: slice; -o-box-decoration-break: slice; box-decoration-break: slice; } </style> </head> <body> <h2>Beispiel für box-decoration-break</h2> <p>Hier ist box-decoration-break auf "slice", der der Anfangswert für diese Eigenschaft ist, eingestellt.</p> <span class="box">Box<br>decoration<br>break<br>property<br>example.</span> </body> </html>