В нормальных браузерах div растягивается в соответствии с заданными параметрами.

Подскажите, как заставить поступать так же IE6?

Код:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title></title>

<meta name="description" content="" />
<meta name="keywords" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />

<!--[if IE 6]>
*<script type="text/javascript" src="minmax.js"></script>
<![endif]-->

<style type="text/css">

*****{
*margin: 0;
*padding: 0;
*}
html****{
*height: 100%;
*}
body****{
*min-height: 100%;
*background: #c0c0c0;
*}

#abs****{
*position: absolute;
*background: yellow;
*top: 30px;
*left: 20px;
*bottom: 40px;
*right: 50px;
*}

</style>

</head>

<body>

<div id="abs">abs</div>

</body>

</html>