2 columns 100% height. Can the problem ever be solved in html markup???!!
- by denja
I'm in despair trying to draw this simple thing. Two columns stretching 100% vertically. Is this ever possible?
here there are two tries
<html>
<head>
<title>Columns</title>
</head>
<body>
<style type="text/css">
.wrapper {font-size:900px;
width:1200px;
margin:0 auto;
}
.col1 {
width:600px;
height:100%;
float:left;
background:#f00;
}
.col2 {
width:600px;
height:100%;
float:left;
background:#00f;
}
</style>
<div class="wrapper">
<div class="col1"> C o l u m n 1 </div>
<div class="col2"> C ol u m n 2 </div>
</div>
</body>
</html>
and
<!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>