El método getPropertyPriority() se usa para verificar si la propiedad CSS especificada tiene la prioridad establecida como «importante» o no .
Sintaxis:
object.getPropertyPriority(propertyname)
Parámetros: Acepta un único parámetro:
- propertyname: Es un parámetro requerido que contiene una string que representa el nombre de la propiedad a verificar.
Valor devuelto: Devuelve la prioridad de la propiedad en forma de string. Si no existe, devuelve una string vacía.
Ejemplo: para mostrar el funcionamiento del método getPropertyPriority() :
html
<html> <head> <style> body { text-align: center; } h1 { color: green; } #p1 { color: green; font-size: 20 !important; } </style> </head> <body> <h1>GeeksforGeeks</h1> <p id="p1"> getPropertyPriority() Method </p> <button onclick="myFunction()"> Get property priority </button> <p id="gfg"></p> <!-- Script to get the priority of the property --> <script> function myFunction() { var x = document.styleSheets[ 0].cssRules[2].style; var prior = x.getPropertyPriority( "font-size"); document.getElementById("gfg").innerHTML = "Priority of font-size is " + prior; } </script> </body> </html>
Producción:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles:
- Google cromo 1
- Borde 12
- explorador de Internet 9
- Firefox 1
- Safari 1
- Ópera 12.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