La propiedad parentRule se usa para devolver el objeto CSSRule que representa un conjunto de reglas CSS que contiene un selector y un bloque de declaración .
Sintaxis: Se utiliza para devolver la propiedad parentRule.
object.parentRule
Valor devuelto: Devuelve el objeto CSSRule.
Ejemplo: para devolver la propiedad parentRule :
html
<html> <head> <title> CSS | Style Declaration parentRule Property </title> <style> body { text-align: center; } h1 { color: green; } #p1 { color: green; font-size: 20; } </style> </head> <body> <h1> GeeksforGeeks </h1> <p id="p1"> parentRule Property </p> <p> Click the button to return the parentRule property </p> <button onclick="myFunction()"> Get parentRule </button> <p id="gfg"></p> <!-- Script to get parentRule property --> <script> function myFunction() { var x = document.styleSheets[ 0].rules[2].style.parentRule.cssText; document.getElementById("gfg").innerHTML = x; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad parentRule de declaración de estilo se enumeran a continuación:
- Google cromo 1
- Borde 12
- explorador de Internet 9
- Firefox 1
- Ópera 15
- Safari 1
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA