how to give a border to bootstrap tab contents

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

    You can use the following code to achieve it :
    JSfiddle Demo

    .nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
    border-bottom: 1px solid #ffffdffffd;
    outline:0;
     }
    }
    

提交回复
热议问题