ASP.Net Menu Control - Horizontal - Not Showing Sub Options

后端 未结 2 2028
温柔的废话
温柔的废话 2021-01-20 02:26

I am trying to use the ASP:Menu control. It is rather simple. I want it Horizontal. Each of those first level items will have Sub items. I can get it Horizontal and when

2条回答
  •  迷失自我
    2021-01-20 03:01

    Sounds like a problem I had with Menu, but that only occurred in IE8... IE8 handled the z-index wrong. Simple to fix luckily:

    
        
    
    

    css:

    .submenu {z-index: 9999; /* IE8 FIX for asp:Menu */}
    

提交回复
热议问题