why doesnt this change the width ;<
code:
<html>
<head>
<style type="text/css">
#a, #b, #c {
height: 10px;
border: 1px black solid;
background: #00f;
margin: 3px;
display: block;
}
</style>
</head>
<body>
<script>
document.getElementById('a').style.width="300px";
document.getElementById('b').style.width="400px";
document.getElementById('c').style.width="500px";
</script>
<div id="a"></div>
<div id="b"></div>
<div id="c"></div>
</body>
</html>
* Supersonicdarky phails