
20/05/2008, 13:38
|
| | Fecha de Ingreso: mayo-2008
Mensajes: 4
Antigüedad: 16 años, 9 meses Puntos: 0 | |
Respuesta: 2 columnas al 100% de altura sin scrollbar Estimado Saruman:
Aqui te pongo las modificaciones que hice.
Espero haberte entendido bien y que sea esto lo que deseas
Saludos ---<--@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>2 Columns</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
* {
padding: 0;
margin: 0;
}
html, body {
height: 100%;
}
html, body {
behavior: url(resources/htc/hover.htc);
background-color:#FFFFFF;
}
#wrap {
margin:0 auto;
width:100%;
height: 100%;
}
#header {
width:100%;
height:20%;
background-color:#999999;
}
#main {
width:24%;
border: 0px;
height: 80%;
background:#9c9;
float:left;
}
#sidebar {
width:76%;
height: 80%;
background:#99c;
float: left;
}
</style>
</head>
<body>
<div id="wrap">
<div id="header">header</div>
<div id="main">menu</div>
<div id="sidebar">content</div>
</div>
</body>
</html>Solo me falta que el |