Advertisement
Advertisement
| 11.28.2007 at 07:52PM PST, ID: 22989633 |
|
[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: |
<!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" xml:lang="en">
<head>
<title>Untitled XHTML Document</title>
<style>
body,html {
height: 100%;
padding: 0;
margin: 0;
border: 0;
}
#frame {
background-color: #000000;
width: 100%;
height: 100%;
}
#col1 {
background-color: #ff0000;
width: 200px;
height: 100%;
float: left;
}
#col2 {
background-color: #0000ff;
width: 100%;
height: 100%;
float: left;
}
#col3 {
background-color: #c0c0c0;
width: 200px;
height: 100%;
float: left;
}
</style>
</head>
<body>
<div id="frame">
<div id="col1">test</div>
<div id="col2">test1</div>
<div id="col3">test2</div>
<br clear="all" />
</div>
</body>
</html>
|