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

前端 未结 6 2295
甜味超标
甜味超标 2021-02-13 09:07

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:41

    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;
      }
    

提交回复
热议问题