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

java - How to Configure JAXRS and Spring With Annotations -

visual studio - TFS will not accept changes I've made to a Java project -

php - Create image in codeigniter on the fly -