Full width tabs using Bootstrap (Support IE)

后端 未结 8 1327
孤城傲影
孤城傲影 2021-02-02 07:34

I\'m trying to adjust Bootstrap tabs to make them span the full width of their container. Here\'s my code (a minimal working example):


<         


        
8条回答
  •  时光说笑
    2021-02-02 08:20

    Try this solution, just one line of code to achieve that.

    .full-width-tabs > ul > li {   width: 100%;  }  
    

    It will make the tabs to span full width of their container.

    Look at jsfiddle : http://jsfiddle.net/BhGKf/

提交回复
热议问题