( height 100% ) plus (2-column css)
- by denja
Hi!
I need a 2-column interface to stretch 100% height the page.
PS: If the contents is too long, the scroll bar should appear. it After this question is solved, I'll try to add a sticky footer to the interface.
I've really tried hard to find the answer by myself...
Thanks if you have any idea
here's the code
<!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-GB">
<head>
<title>2 Column CSS Demo - Equal Height Columns with Cross-Browser CSS</title>
<style media="screen" type="text/css">
/* <!-- */
*{
margin:0;
padding:0;
}
html {
background-color: #ccc;
height: 100%;
}
body {
background-color: white;
width: 600px;
margin: 0 auto;
height:100%;
position: relative;
border-left: 1px solid #888;
border-right: 2px solid black;
}
#footer {
clear:both;
width:100%;
height:0px;font-size:0px;
}
#container2 {
clear:left;
float:left;
width:600px;
overflow:hidden;
background:#ffa7a7;
}
#container1 {
float:left;
width:600px;
position:relative;
right:200px;
background:#fff689;
}
#col1 {
float:left;
width:400px;
position:relative;
left:200px;
overflow:hidden;
}
#col2 {
float:left;
width:200px;
position:relative;
left:200px;
overflow:hidden;
}
/* --> */
</style>
</head>
<body>
<div id="container2">
<div id="container1">
<div id="col1">
aaaa a a a a a a a a a aa aa a a a a a a a a aa aa a a a a a a a a aa aa a a a a a a a aa a a a a aa aa a a a a a a a a aa aa a a a a a a a a aa aa a a a a aa a a a a aa aa a
</div>
<div id="col2">
fghdfghsfgddn fghdfghsfgddn fghdfghsfgddn fghdfghsfgddn fghdfghsfgddn fghdfghsfgddn fghdfghsfgddn v
</div>
</div>
</div>
<div id="footer">
</div>
</body>