有没有合适的方法在同一页面上有 2 个不同样式的 jquery ui 按钮?
我可以为第二个按钮复制 css,但是有很多不同的 !important 样式,我需要在第一个按钮之后添加第二个 !important 以更改样式。
例如:
.ui-state-active {
background:none !important;
background-color:#E1E1E1 !important;
color:#000 !important;
}
然后我必须马上去添加(它需要在之后
.new-theme.ui-state-active {
background:none !important;
background-color:red !important;
color:#000 !important;
}
问题是每个州的这些重要风格都结束了,所以我必须考虑它们的去向。这是正常的还是通常以不同的方式处理?