jmasterx
jmasterx

Reputation: 54173

Force a style change in RadioButtonGroup?

I have a RadioButtonGroup whos css class is 'radio' from Bootstrap.

It causes a table attribute called border collapse that I do not want:

enter image description here

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

Answers (1)

Andy
Andy

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

Related Questions