Add Text Hint to Bootstrap Navbar Toggle Button on Mobile-View

前端 未结 4 494
天涯浪人
天涯浪人 2021-02-04 10:43

Some tests have shown that the \"hamburger\" button for collapsable menus on mobile devices are mysteries to users and I would like to add the word \"Menu\" next to my Bootstrap

4条回答
  •  北荒
    北荒 (楼主)
    2021-02-04 11:07

    HTML

    
    

    CSS

    .navbar-toggle .button-label {
        display: inline-block;
        float: left;
        font-weight: bold;
        line-height: 14px;
        padding-right: 10px;
    }
    .button-bars {
        display: inline-block;
        float: left;
    }
    

提交回复
热议问题