css - Menu slide up leaving a gap in IE -


after sliding up, there gap underneath

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

Popular posts from this blog

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -

java - JavaFX 2 slider labelFormatter not being used -