DOM - CSSStyleDeclaration

var styleObj= document.styleSheets[0].cssrules[0].style; alert(styleobj.csstext); for(var i = styleobj.length -1; i >=0; i --){ var namestring = styleobj [i]; styleobj.removeproperty(namestring); } alert(styleobj.csstext);
Representa una colección CSS de pares propiedad-valor. Se utiliza en unas cuantas APIs:

• HTMLElement.style - para manipular el estilo de un solo elemento (<elem style="...">);
• En otras palabras, es un interface para los bloques de declaraciones devueltos por la propiedad style de una regla CSS en una hoja de estilos, cuando la regla es una CSSStyleRule.
• CSSStyleDeclaration es también un interface de sólo-lectura para el resultado de window.getComputedStyle().

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.