CSSStyleDeclaration.cssText

CSSStyleDeclaration.cssText - текстове представлення стилю CSS.

Синтаксис:

CSSStyleDeclaration.cssText;

Параметри:

CSSStyleDeclaration - об'єкт CSSStyleDeclaration.

Опис:

cssText - властивість об'єкту CSSStyleDeclaration яка повертає/задає рядок у якому записані css стилі через ;. Наприклад: "color:red; border:0; text-align: center;".

Для об'єкту що повертає getComputedStyle() ця властивість тільки для читання.

Приклад:

var cs= getComputedStyle(document.getElementsByTagName('p')[0]); alert(cs.cssText); cs= document.getElementsByTagName('p')[0].style; cs.cssText='color:red; border: 1 solid blue;';