Bootstrap css, how to make always visible navbar-toggle?

前端 未结 6 1221
小鲜肉
小鲜肉 2021-02-13 09:23

I\'d like to add one of those buttons that are shown when on mobile device in order to open the collapsed menu in the navbar, but haven\'t been able so far, here\'s the less cod

6条回答
  •  自闭症患者
    2021-02-13 09:52

    Add a custom class to your navbar-toggle, like navbar-toggle-visible and then add this rule to your css

      @media (min-width: 768px) {
      .navbar-toggle-visible {
        display: inline;
      }
    

提交回复
热议问题