Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/04/2007, 04:25
hscnet
 
Fecha de Ingreso: diciembre-2003
Mensajes: 83
Antigüedad: 20 años, 5 meses
Puntos: 0
Problema con FLOAT

Tengo el siguiente CSS y entre las capas #centrocnt y #centrodch me deja un espacio en blanco que no sé cómo quitar.

Necesito ayuda. Gracias.

CSS
Cita:
body {
margin: 0px;
}
#cabecera {
background-color: Aqua;
height: 100px;
}
#centrosup {
background-color: Blue;
height: 15px;
}
#centroizq {
background-color: Fuchsia;
float: left;
width: 20%;
height: 100%;
}
#centrocnt {
background-color: Gray;
float: left;
width: 60%;
height: 100%;
}
#centrodch {
background-color: Green;
height: 100%;
}
#pie {
background-color: Olive;
height: 15px;
}

HTML
Cita:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<link href="plantilla.css" rel="stylesheet" type="text/css">
</HEAD>

<BODY>
<div id="cabecera"></div>
<div id="centrosup"></div>
<div id="centroizq"></div>
<div id="centrocnt"></div>
<div id="centrodch"></div>
<div id="pie"></div>
</BODY>
</HTML>