Please note, this is a STATIC archive of website developer.mozilla.org from November 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Stylesheet.parentStyleSheet

Resumen

Devuelve la hoja de estilo que incluye a la que está en curso, si existe.

Sintaxis

objRef = stylesheet.parentStyleSheet 

Ejemplo

// encuentra la hoja de estilo de alto nivel 
if (stylesheet.parentStyleSheet) {
  sheet = stylesheet.parentStyleSheet;
}
else
{ sheet = stylesheet; }

Notas

Esta propiedad devuelve NULL si la hoja de estilo actual es una hoja de estilo de alto nivel o si la inclusión de hojas de estilo no está implementada.

Specification

parentStyleSheet

Etiquetas y colaboradores del documento

 Colaboradores en esta página: fscholz, khalid32, teoli, HenryGR
 Última actualización por: khalid32,