Hello I have a div inside other div with a margin-top, it looks good in Ie7 but i have an issue in firefox, it doesn't work the margin-top
/*CSS*/
#main{background-color:#003399; height:50px; margin-top:10px; width:300px;}
#child{background-color:#993300; height:50px; margin-top:10px; margin-bottom:10px; margin-right:10px;}
/*HTML*/
<div id="main">
<div id="child">test</div>
</div>