I have a father div which holds 3 children divs, I try to adjust the 3 divs to the father width but I have a little gap after the third div, how can I solve it ?
HTML
<div id="main">
<div id="first" style="width:100%;float:left">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
</div>
CSS
div {
border: 1px;
border-style: double;
}
div#first> div{
width:33%;
float:left;
display:block;
}