13/03/2008, 06:08
|
| Colaborador | | Fecha de Ingreso: octubre-2006 Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 1 mes Puntos: 280 | |
Re: Borde de un DIV (MFF) Sin verlo no puedo saber, pero sí que tienes algunas redundancias:
div#top{
color:#EA3B3E;
width:100%;
margin: 0px auto;
height: auto;
height: 10px; (sólo lee esta, no la de arriba)
background-color: #EA3B3E; (esto con color:#EA3B3E; no valida) margin-top: 0px; (repetido)
}
div#logo{
width: 25%; margin-left: 0px; (unificable)
margin-top: 0px; ('')
margin-left: 0px; ('')
margin-right: 0px; ('')
background-color: #EA3B3E;
float: left;
}
div#title{
width: 75%;
float: right;
background-color: #EA3B3E;
margin-top: 5%;
margin-left: 0px;
margin-right: 0px;
text-decoration: none;
}
Esto estaría mejor como:
div#top{
width:100%;
margin: 0px auto;
height: 10px;
background-color: #EA3B3E;
}
div#logo{
width: 25%;
margin: 0px;
background-color: #EA3B3E;
float: left;
}
div#title{
width: 75%;
float: right;
background-color: #EA3B3E;
margin-top: 5% 0px 0px;
text-decoration: none;
}
Si muestras mejor lo que te ocurre, podremos ver qué pasa, porque yo ahí no veo ningún borde en el texto. |