bootstrap 3 navbar collapse button not working

后端 未结 8 1289
离开以前
离开以前 2020-12-06 08:59

I did some modification in navbar but now the toggle button is not responding on click. Below is my code. Where I am wrong ??


CODE:

           


        
8条回答
  •  自闭症患者
    2020-12-06 09:44

    You need to change in this markup

     

    change the

    data-target=".navbar collapse"

    to

    data-target=".navbar-collapse"
    

    Reason : The value of data-target is a any class name of the associated nav div. In this case it is

    
    

    Js Fiddle Demo

提交回复
热议问题