how to give a border to bootstrap tab contents

后端 未结 9 2114
长发绾君心
长发绾君心 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:00

    The following css should do exactly what you're looking for :)

    .tab-content {
        border-left: 1px solid #ffffd;
        border-right: 1px solid #ffffd;
        padding: 10px;
    }
    
    .nav-tabs {
        margin-bottom: 0;
    }
    

    margin-bottom: 0; on .nav-tabs removes the gap in between the pills and content.

    The padding on .tab-content makes the content not pressed against the new borders on the left and right.

提交回复
热议问题