?¿
Código CSS:
Ver original* html #container {
height: 100%;
}
el doctype???
para que tu div right tome el 100% de altura el padre deve tener una altura definida ya sea en porcentaje o en px
prueba algo asi:
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css" media="screen"> * {
padding: 0;
margin: 0;
}
html,body{margin:0;padding:0;height:100%;}
body {
background: #333333;
}
#container { width: 900px;height: 100%; position:relative; margin:auto; background:#009933 }
#left {
margin:0;
padding:0;
width:200px;
height:600px;
color:#333;
background:#eaeaea;
border:1px solid #333;
}
#right {
position:absolute;
right: 0;
top: 0;
padding:0;
width:200px;
height:100%;
color:#333;
background:#eaeaea;
}
<div id="left">div con altura fija
</div>
<div id="right">mi div 100% height
</div>
Ps: también prueba buscar en el foro o google sobre columnas equilibradas