English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

CSSStyleDeclaration length Property

 JavaScript CSSStyleDeclaration Object

lengthThe property returns an integer representing the number of style declarations in this CSS declaration block.

Syntax:

element.style.length
var elem = document.getElementById("s1");
var x = elem.style.length;
Test and see‹/›

Browser Compatibility

All browsers fully support the length property:

Property
lengthYesYesYesYesYes

Technical Details

Return Value:An integer that provides the number of styles explicitly set on the parent element of the example
DOM Version:CSS Object Model

 JavaScript CSSStyleDeclaration Object