Tabstrip containing bootstrap columns

后端 未结 3 1210
隐瞒了意图╮
隐瞒了意图╮ 2020-12-15 09:59

I have a Kendo tabstrip and I\'m trying to put two divs with the col-md-6 class side by side inside a tabstrip item. Instead of having 2 columns, they stack on

3条回答
  •  星月不相逢
    2020-12-15 10:31

    This might be more of a 'hack' than a fix, but this is how we got around it

    create a class, lets call it boxFix

    .boxFix *,
    .boxFix *::before,
    .boxFix *::after {
      -moz-box-sizing: border-box !important;
      -webkit-box-sizing: border-box !important;
      box-sizing: border-box !important;
    }
    

    Then for the kendo tab strip

    • tab 1
    • tab 2
    • tab 3
    • Sydney

    Like I said this is probably more of a hack... but I hope it helps.

提交回复
热议问题