Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> #example{ border: 3px solid #666; padding: 15px; background: #ccc; background-clip: content-box; } </style> </head> <body> <h2>Ein Beispiel für die Eigenschaft background-clip</h2> <p>Hier wurde der Wert "content-box" verwendet.</p> <div id="example"> <p>Der Hintergrund erstreckt sich bis zum Rand der Inhaltsbox.</p> </div> </body> </html>