Reputation: 54173
I have a RadioButtonGroup whos css class is 'radio' from Bootstrap.
It causes a table attribute called border collapse that I do not want:
I have tried adding my own style to combat this:
.radioButtonList
{
border-collapse:separate;
}
But that seems to have no effect.
Thanks
Upvotes: 0
Views: 56
Reputation: 14575
You can override Bootstrap, which is probably more specific, or further down in the cascade. Just add !important
Like so:
.radioButtonList {
border-collapse:separate !important;
}
Upvotes: 3