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
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.