Hello. I have an unpleasent gap in IE between two divs.
The CSS:
* { margin:0; padding:0; }
#Structure { width:1000px; max-width:1000px; }
#Top_Scroll { width:1000px; height:12px; display:block; }
#Middle_Scroll { width:1000px; }
#Bottom_Scroll { width:1000px; height:14px; display:block; }
The HTML:
<div id="Structure">
<div id="Top_Scroll"></div>
<div id="Middle_Scroll"></div>
<div id="Bottom_Scroll></div>
</div>
The Ouput for FF is working just fine and it looks like:
######################
#-------Top_Scroll DIV -------#
######################
######################
#--------Middle_Scroll DIV-----#
######################
######################
#-------Bottom_Scroll DIV-----#
######################
But the IE outputs:
######################
#-------Top_Scroll DIV -------#
######################
GAP (Between 3pxs approx.)
The gap is IN Top_Scroll Div’s bottom
######################
#--------Middle_Scroll DIV-----#
######################
######################
#-------Bottom_Scroll DIV-----#
######################
Can some1 help me plz? :sick: