English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
JavaScript CSSStyleDeclaration Object
lengthThe property returns an integer representing the number of style declarations in this CSS declaration block.
element.style.length
var elem = document.getElementById("s1"); var x = elem.style.length;Test and see‹/›
All browsers fully support the length property:
Property | |||||
length | Yes | Yes | Yes | Yes | Yes |
Return Value: | An integer that provides the number of styles explicitly set on the parent element of the example |
---|---|
DOM Version: | CSS Object Model |