How to get rid of ugly asp:Menu flickering?

后端 未结 12 1169
遥遥无期
遥遥无期 2020-12-24 14:37

I\'m using the asp:Menu control on an ASP.NET 4.0 Webforms page with table-free rendering mode:



        
12条回答
  •  北海茫月
    2020-12-24 15:15

    #menu ul li ul 
    { 
        display: none; 
    } 
    
     and
    #menu ul li  
    { 
        position: relative;  
        float: left; 
        list-style: none; 
    } 
    

    This worked for me also. I was not having an issue until I placed a reCaptcha on the form. My menu was being produced within a Master Page also. Thank you very much!

提交回复
热议问题