Vertical divider doesn't work in Bootstrap 3

前端 未结 6 2065
小蘑菇
小蘑菇 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:03

    Here is some LESS for you, in case you customize the navbar:

    .navbar .divider-vertical {
        height: floor(@navbar-height - @navbar-margin-bottom);
        margin: floor(@navbar-margin-bottom / 2) 9px;
        border-left: 1px solid #f2f2f2;
        border-right: 1px solid #ffffff;
    }
    

提交回复
热议问题