Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/01/2012, 08:21
Avatar de madhatterdef
madhatterdef
 
Fecha de Ingreso: diciembre-2011
Ubicación: argentina
Mensajes: 213
Antigüedad: 12 años, 5 meses
Puntos: 59
Respuesta: crear una plantilla con css

puede que te ayude un poco


<!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>Documento sin título</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}

.header {
background-color: #F00;
height: 200px;
}

.sidebar1 {
float: left;
width: 20%;
background-color: #0F0;
}
.contenido {
width: 60%;
float: left;
background-color: #CCC;
}
.sidebar2 {
float: left;
width: 20%;
background-color: #0F0;
}

.footer {
background-color: #00F;
clear: both;
}
</style>
</head>

<body>
<div class="header">cabezera</div>
<div class="sidebar1">sidebar1</div>
<div class="contenido">contenido </div>
<div class="sidebar2">sidebar2</div>
<div class="footer">footer</div>
</body>
</html>
__________________
PD gracias por el karma