Advertisement
Advertisement
| 05.08.2008 at 12:01AM PDT, ID: 23385246 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<style type="text/css">
HTML
{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:13px;
margin:0px;
padding:0px;
line-height: 16px;
color:#000000;
height:100%;
}
BODY
{
margin:0px;
height:100%;
position:absolute;
}
.header{background-color:green;
width:500px;
height:50px;}
.center{background-color:blue;
height:150px;height:auto !important;
min-height:150px;}
.footer{background-color:red;
width:500px;
height:100px;
position:absolute;
bottom:0px;
}
</style>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test</title>
</head>
<body>
<div>
<div class="header"></div>
<div class="center"><span>center</span></div>
<div class="footer"></div>
</div>
</body>
</html>
|