how to give a border to bootstrap tab contents

后端 未结 9 2043
长发绾君心
长发绾君心 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 13:10

    With following code, all corner have radius, but tabs offset.

    .nav-tabs {
        padding-left: 15px;
        margin-bottom: 0;
        border: none;
    }
    .tab-content {
        border: 1px solid #ffffd;
        border-radius: 4px;
        padding: 15px;
    }
    

    Caution: If you set nav-tab's padding-left 0px, first tab conflicts with left-top radius of contents.

提交回复
热议问题