Tengo un problema con divs y css. Resulta que quiero una cabecera de fondo rojo, con una imágen a la izquierda y un texto a la derecha (tipo logotipo y empresa)
He hecho un div top, de fondo rojo, un div para el logo (float left y fondo rojo) y un div para el texto (float right y fondo rojo)
Pero alrededor del div del texto me sale un borde blanco, de forma que no da la impresión de que toda la cabecera sea "una" Codigo:
Cita:
Alguna Idea?div#top{
color:#EA3B3E;
width:100%;
margin: 0px auto;
height: auto;
height: 10px;
background-color: #EA3B3E;
margin-top: 0px;
}
div#logo{
width: 25%;
margin-left: 0px;
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;
}
color:#EA3B3E;
width:100%;
margin: 0px auto;
height: auto;
height: 10px;
background-color: #EA3B3E;
margin-top: 0px;
}
div#logo{
width: 25%;
margin-left: 0px;
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;
}
Muchas gracias!