dadli, пройдите по ссылке, там все написано. Еще можете посмотреть пример ниже.
<html>
<head>
<style type="text/css">
div {
background-color: green;
margin: 10px;
}
#div2 {
height: 50px;
width: 50px;
}
</style>
<script type="text/javascript">
window.onload = function() {
var elem1 = document.getElementById( 'div1' );
var elem2 = document.getElementById( 'div2' );
alert( 'elem1\n' + elem1.style.height + '\n' + elem1.style.width );
alert( 'elem2\n' + elem2.style.height + '\n' + elem2.style.width );
var curStyle = elem2.currentStyle || window.getComputedStyle(elem2, null);
alert( 'elem2\n' + curStyle.height + '\n' + curStyle.width );
}
</script>
</head>
<body>
<div id="div1" style="height:50px;width:50px;"></div>
<div id="div2"></div>
</body>
</html>