Vertical divider doesn't work in Bootstrap 3

前端 未结 6 2057
小蘑菇
小蘑菇 2021-02-01 00:16

I opened the Nav example which comes with the standard Bootstrap download (bootstrap-3.0.0\\examples\\navbar\\index.html) and added vertical dividers between two of the links.

6条回答
  •  北海茫月
    2021-02-01 01:17

    I think this will bring it back using 3.0

    .navbar .divider-vertical {
        height: 50px;
        margin: 0 9px;
        border-right: 1px solid #ffffff;
        border-left: 1px solid #f2f2f2;
    }
    
    .navbar-inverse .divider-vertical {
        border-right-color: #222222;
        border-left-color: #111111;
    }
    
    @media (max-width: 767px) {
        .navbar-collapse .nav > .divider-vertical {
            display: none;
         }
    }
    

提交回复
热议问题