таки да, но через метод можно вытаскивать свойства, которые с дефисами.
<html>
<head><title></title></head>
<body style="background-color: red;">...
<script>
alert(
document.body.style["background-color"] +
"\n" +
document.body.style.getPropertyValue("background-color")
);
</script>
</body>
</html>
в хроме различий нет, в FF и О есть (первое - undefined, Ваш К.О.)
Цитата:
|
getPropertyCSSValue(propertyName)
Note: This method may be deprecated by the W3C. It is not supported by IE and even though the function exists in Opera, calling it throws a DOMException NOT_SUPPORTED_ERR.
|
OH SHI~!!! А я его в функции анимирования использую.