les dejo un ejemplo de una web que estoy construyendo:
Código :
<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" > <div id="content"> <div id="cabecera"></div> <div id="menu"> </div> <div id="contenido"></div> <div id="pie"></div> </div> </body>
y el css
Código :
#content {
text-align:left;
margin:auto;
background-color:#000000;
width:940px;
height:800px;
}
#cabecera {
width: 800px;
height:137px;
background-color:#000000;
}
#menu {
width:940px;
height:30px;
float:left;
background-color:#000000;
background-image: url(imgs/bg_menu.gif);
background-repeat: repeat-x;
text-align:right;
}
#contenido {
width:940px;
height:650px;
float:left;
background-color:#000000;
background-image: url(imgs/bg_cont.gif);
background-repeat: repeat-x;
border-left: 1px solid #1b1b1b;
border-right: 1px solid #1b1b1b;
}
#pie {
clear:both;
width:940px;
height:90px;
background-color:#000000;
background-image: url(imgs/bg_pie.jpg);
background-repeat: no-repeat;
border-left: 1px solid #1b1b1b;
border-right: 1px solid #1b1b1b;
}
o sea el div "contenido es el de la cuestion, que me recomiendan?
agradezco muchisimo su ayuda desde ya
