Bootstrap 3 Horizontal and Vertical Divider

前端 未结 7 2057
慢半拍i
慢半拍i 2021-01-30 21:25

I am having trouble to put in horizontal and vertical lines on my website. Not sure what\'s wrong with this.

I tried using borders but I am not sure if I am doing it rig

7条回答
  •  北荒
    北荒 (楼主)
    2021-01-30 21:40

    CSS

    .vr {
       border-right: 1px solid #ccc !important;
    }
    

    HTML

    Column 1

    Column 2

    Now, we can use class vr wherever we need to have a vertical-divider kind of appearance.

    Hope it helps!

提交回复
热议问题