Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> #example{ border: 3px solid #666; padding: 15px; background: #ccc; background-clip: content-box; } </style> </head> <body> <h2>Exemple de la propriété background-clip</h2> <p>On a ici utilisée la valeur "content-box".</p> <div id="example"> <p>L'rrière-plan prolonge au bord de la boîte de contenu.</p> </div> </body> </html>