Vertical divider doesn't work in Bootstrap 3

前端 未结 6 2067
小蘑菇
小蘑菇 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 find using the pipe character with some top and bottom padding works well. Using a div with a border will require more CSS to vertically align it and get the horizontal spacing even with the other elements.

    CSS

    .divider-vertical {
        padding-top: 14px;
        padding-bottom: 14px;
    }
    

    HTML

    
    

提交回复
热议问题