hier noch nen bissel Quelltext dazu:
...
<style>
[code lang=css]#red {
border-left:5px #F3F3F4 solid;
/* rechter Rand um zu überprüfen wann ein DIV anfäng und aufhört */
border-right:5px #FFF solid;
position:absolute;
height:100%;
left:0px;
right:0px;
top:0px;
bottom:0px;
background-color:#8B0E13;
float:left;
}
</style>
<script type="text/javascript">
function fensterbreite () {
breite = window.innerWidth;
document.getElementById("red").style.width = breite;
document.getElementById("red").style.backgroundColor = "#FF0000";
}
</script>
</head>
<body onload="fensterbreite()">
<div id="red" style="width:1000px;"></div>
</body>...[/code]