Gracias por contestarme C2am. ya anteriormente busque como me lo recomendastes y encontre un ejemplo como lo que andaba buscando,
pero cuando copio el codigo y lo inserto en Dreamweaver lo pruebo en el navegador y no se me visualiza el banner. El tutorial esta en la pagina remsr.com/articulos/css-trescol.php. Como podria solucionar este tema? gracias!
Lo estoy probando con internet explorer no porque a mi me guste, pero hay much agente q lo sigue usando y la verdad quiero q me funcione tmb en este explorador.
y el codigo:
Código HTML:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS 3 columas</title>
<style type="text/css">
body,html{
margin:0;
padding:0;
width:100%;
height-:100%;
background: url(../imagenes/blog/cabeza.jpg) repeat left top;
}
#container{
position:relative;
left:0;
top:0;
width:900px;
min-height:700px;
background:#000;
margin:0 auto;
overflow:hidden;
}
*html #container{
height-:700px;
overflow:visible;
}
#header{
position:relative;
left:0;
top:0;
width:896px;
height-:96px;
background: url(../imagenes/blog/blk5.png) repeat left top;
overflow:hidden;
border: 2px solid #fff;
}
#content{
position:relative;
left:0;
top:0;
width:100%;
min-height:500px;
overflow:hidden;
background:steelblue;
}
*html #content{
height-:500px;
overflow:visible;
}
#col1{
position:relative;
left:0;
top:0;
width:297px;
min-height:496px;
overflow:hidden;
float:left;
background: url(../imagenes/blog/blk2.png) repeat left top;
border: 2px solid #fff;
border-right: 1px solid #fff;
}
#col2{
position:relative;
left:0;
top:0;
width:298px;
min-height:496px;
overflow:hidden;
float:left;
background: url(../imagenes/blog/blk4.png) repeat left top;
border: 2px solid #fff;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
}
#col3{
position:relative;
left:0;
top:0;
width:297px;
min-height:496px;
overflow:hidden;
float:left;
background: url(../imagenes/blog/blk2.png) repeat left top;
border: 2px solid #fff;
border-left: 1px solid #fff;
}
#footer{
position:relative;
left:0;
top:0;
width:896px;
height-:96px;
background: url(../imagenes/blog/blk5.png) repeat left top;
overflow:hidden;
border: 2px solid #fff;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
</div>
<div id="content">
<div id="col1">
</div>
<div id="col2">
</div>
<div id="col3">
</div>
</div>
<div id="footer">
</div>
</div>
</body>
</html>