Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 RadioButtonGroup,其 css 类是 Bootstrap 中的“收音机”。
它会导致我不想要一个名为边框崩溃的表属性:
我尝试添加自己的风格来解决这个问题:
.radioButtonList { border-collapse:separate; }
但这似乎没有任何效果。
谢谢
您可以覆盖 Bootstrap,它可能更具体,或者在级联中更进一步。只需添加!important
!important
像这样:
.radioButtonList { border-collapse:separate !important; }