La propiedad backgroundClip del estilo DOM se utiliza para establecer o devolver el área de pintura del fondo.
Sintaxis:
- Se utiliza para devolver la propiedad backgroundClip .
object.style.backgroundClip
- Se utiliza para establecer la propiedad backgroundClip .
object.style.backgroundClip = "border-box|padding-box|content-box| initial|inherit"
Valores de propiedad:
- propiedad border-box: La propiedad border-box se utiliza para establecer la distribución del color de fondo en toda la división.
- propiedad padding-box: la propiedad padding-box se utiliza para establecer el fondo dentro del borde.
- propiedad content-box: la propiedad content-box se utiliza para establecer el color de fondo hasta el contenido únicamente.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>Border Box</title> <style> #gfg { background-color: green; background-clip: border-box; text-align: center; border: 10px dashed black; color: white; } </style> </head> <body> <center> <h1> DOM Style backgroundClip Property </h1> <div id="gfg"> <h2> GeeksforGeeks </h2> <p> background-clip: border-box; </p> </div> <br> <button onclick="myGeeks()">Submit</button> <script> function myGeeks() { document.getElementById("gfg" ).style.backgroundClip = "padding-box"; } </script> </center> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con DOM Style backgroundClip Property se enumeran a continuación:
- Google cromo 1
- Borde 12
- explorador de Internet 9
- firefox 4
- Ópera 10.5
- Safari 14
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA