aki les dejo los codes:
index:
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>Web</title> <link href="estilos.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="web-arriba"></div> <div id="web-medio"> <div id="web-logo"></div> <div id="contenido-arriba"></div> <div id="contenido-medio"> <div class="izquierda" id="espacio"> 11 <br /> <br /> <br /> <br /> </div> <div class="centro" id="espacio"> 22 <br /> <br /> <br /> <br /> </div> <div class="derecha" id="espacio"> 33 <br /> <br /> <br /> <br /> </div> </div> <div id="contenido-abajo"></div> </div> <div id="web-abajo"></div> </body> </html>
Código HTML:
body{ background: #131111; color: #cdc9c9; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; margin:15px; } #web-arriba{ height: 13px; width:984px; background: url(imagenes/web-arriba.png); margin-left: auto; margin-right: auto; } #web-logo{ width:984px; height: 100px; background: url(imagenes/web-logo.png); margin-left: auto; margin-right: auto; } #web-medio{ width:984px; background:url(imagenes/web-medio.png) repeat-y; margin-left: auto; margin-right: auto; } #web-abajo{ height: 13px; width:984px; background: url(imagenes/web-abajo.png); margin-left: auto; margin-right: auto; } #contenido-arriba{ height: 13px; width:960px; background: url(imagenes/contenido-arriba.png); margin-left: auto; margin-right: auto; } #contenido-medio{ width:960px; background:url(imagenes/contenido-medio.png) repeat-y; margin-left: auto; margin-right: auto; } #contenido-abajo{ height: 13px; width:960px; background: url(imagenes/contenido-abajo.png); margin-left: auto; margin-right: auto; } #espacio{ float:left; } .izquierda{ background: #336600; width:180px; margin-left:12px; margin-right:12px; } .centro{ background:#00FF00; width:550px; } .derecha{ background:#FFFFFF; width:180px; margin-left:12px; margin-right:12px; }