how to give a border to bootstrap tab contents

后端 未结 9 2013
长发绾君心
长发绾君心 2021-01-30 12:17

I\'m using bootstrap tabs and it works perfectly. I\'m trying to figure out if there is a way to use bootstrap to give a border to the contents of the tabs that is connected to

9条回答
  •  隐瞒了意图╮
    2021-01-30 12:55

    Based on Popnoodles answer, adding .border .border-top-0 to .tab-pane also works in Bootstrap 4.3

      

    or in SCSS

    .tab-pane {
      @extend .border;
      @extend .border-top-0;
      @extend .p-3;
    }
    

提交回复
热议问题