21/01/2012, 16:28
|
| | | Fecha de Ingreso: diciembre-2011 Ubicación: argentina
Mensajes: 213
Antigüedad: 13 años, 1 mes Puntos: 59 | |
Respuesta: Forma correcta de crear header 100% width ya esta prueba esto
Código:
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<style>
body{
margin: 0px;
padding: 0px;
}
.cabezera{
width: 100%;
margin: 0 auto;
height: 60px;
background-color: #F00;
min-width: 1010px;
}
.contenedor{
width: 980px;
margin: 0 auto;
height: 60px;
}
.div1{
width: 490;
margin: 0 auto;
background-color: #0FF;
height: 50px;
float: left;
}
.div2{
width: 490;
margin: 0 auto;
background-color: #0F0;
height: 50px;
float: right;
}
</style>
</head>
<body>
<div class="cabezera">
<div class="contenedor">
<div class="div1"></div>
<div class="div2"></div>
</div>
</div>
</body>
</html>
|