Height unfortunately won't work.
Height does not work correctly in IE. IE treats height as 'min-height'. And, as you might expect, min-height doesn't work at all in IE.
But if you wan't something with width you could try this:
[HTML] <head>
<style type="text/css">
#box {
width:100%;
background-color:#000;
}
</style>
</head>
<body>
<div id="box">
</div>
</body>
[/HTML]
If this isn't wide enough you could change it to this:
- <style type="text/css">
-
* {
-
width:100%;
-
}
-
#box {
-
width:100%;
-
background-color:#000;
-
}
-
</style>
-
Hope it helps, Thanks, Death