css - Menu slide up leaving a gap in IE -
the code here. chrome , firefox work well: http://jsfiddle.net/cau9t/4/
it happens in ie. versions of ie... idea?
this ie glitch on rendering shadows. work around have element below shadowed element, force shadow area redrawn suggested on answer: ie 9 , 10 box-shadow on resizing element
your ul absolute positioned, nothing gets pushed when height change. can fix problem adding pseudo element ul itself:
ul.division:after { content: " "; display:block; height:15px; width:100%;}
updated fiddle - http://jsfiddle.net/cau9t/5/
Comments
Post a Comment