1

Internet Explorer,我们亲爱的老敌人.... IE7 让我的 css 下拉/飞出菜单让我头疼。

出于某种原因,将鼠标悬停在具有飞出级别的子菜单上时,该级别会闪现到视图中,然后立即消失。想不通。

http://cy4or.co.uk

查看 IE7 中的 Services/Digital Forensics,您会发现问题所在。

4

1 回答 1

1

Remove position:relative from the list items for IE7:

@media, 
  { 
  #access .menu li { position: static;} 
  }

position:relative triggers hasLayout and a stacking context in IE6/7, which combined with the float, causes the content to drop out of view.

于 2012-09-26T01:42:59.640 回答