Make clicked tab active in Bootstrap

后端 未结 10 843
傲寒
傲寒 2021-01-31 09:02

I am using Django and integrated Bootstrap with Django. Here is my HTML code for the navigation bar:

10条回答
  •  独厮守ぢ
    2021-01-31 09:42

    After adding gamer's JavaScript into your template code_here , you got to make sure you have the similar settings in your CSS file also, in order to make JavaScript work.

    .navbar-nav > li.active > a {
      color: #d74b4b;
      background: transparent;
      border-bottom: none;
    }
    

提交回复
热议问题