Люди, можно как нибудь избавиться от хака в div#header_right ???
Код:
<html>
<head>
<style>
<!--
div#width{
min-width:790px;
width:expression((document.documentElement.clientWidth || document.body.clientWidth) < 790? "790px":"auto");
}
div#header {
height: 205px;
width: 100%;
}
div#header_left {
height: 205px;
width: 281px;
float: left;
}
div#header_right {
height: 205px;
min-width:509px;
width:expression((document.documentElement.clientWidth || document.body.clientWidth) < 509? "509px": "auto");
float: left;
}
-->
</style>
</head>
<body>
<div id="width">
<div id="header">
<div id="header_left"></div>
<div id="header_right"></div>
</div>
</div>
</body>
</html>