答案 0 :(得分:0)
如果没有代码,您很难看到自己在做什么,但实际上,您必须在css规则中使用!important
标记。例如,如果您的td上有一条规则将背景变为粉红色,那么您将执行以下操作:
td.pinkCell {
background-color:pink!important;
}
这将确保突出显示不会覆盖您的属性。
答案 1 :(得分:0)
.handsontable .currentRow {
background-color: rgba(225, 250, 255, 1);
}
.handsontable .currentCol {
background-color: rgba(225, 250, 255, 1);
}
目的是能够在此完成。谢谢你的回答。