Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> #example1 { border: 5px dashed #666; padding: 15px; background: #1c87c9; background-clip: border-box; } #example2 { border: 5px dashed #666; padding: 15px; background: #1c87c9; background-clip: padding-box; } </style> </head> <body> <h2>Ein Beispiel für die Eigenschaft background-clip</h2> <p>Hier wurde background-clip auf "border-box" (es ist sein Standardwert) gesetzt.</p> <div id="example1"> <p>Der Hintergrund erstreckt sich hinter dem Rand.</p> </div> <p>Hier ist background-clip auf "padding-box" gesetzt.</p> <div id="example2"> <p>Der Hintergrund erstreckt sich bis zur Innenkante des Randes.</p> </div> </div> </body> </html>