Salut à tous,

voila j'ai mes div "C" et "E" qui actuellement n'ont pas de hauteur fixe (ou 11px chacun), pour lequel je souhaiterais supprimer (pour les 2) 1px en top et 1px en bottom

Possible? Si oui comment faire?

Merci d'avance pour vos info

#A {
	background-color: #FC6;
	font-family: "Lucida Grande";
	line-height: 13px;
	font-size: 9px;
	width: 300px;
	height: 23px;
}
#B {
	background-color: #6CF;
	float: left;
	width: 215px;
}
#C {
	background-color: #F6F;
	width: 215px;
}
#D {
	background-color: #FFF;
	height: 1px;
	width: 215px;
}
#E {
	background-color: #CCC;
	width: 215px;
}
</style>
</head>

<body>
<div id="A">
  <div id="B">
    <div id="C">CCCCC</div>
    <div id="D"></div>
    <div id="E">EEEEE</div>
   </div>
</div>