2015-10-21 77 views

回答

0

没有代码这一点很难看到你在做什么,但本质上,你将不得不使用!important标签上你的CSS规则。例如,如果您对您的TD的,它把背景粉红色的规则,你会做到以下几点:

td.pinkCell { 
    background-color:pink!important; 
} 

这将确保高亮不会覆盖你的财产。

0
.handsontable .currentRow { 
    background-color: rgba(225, 250, 255, 1); 
} 
.handsontable .currentCol { 
    background-color: rgba(225, 250, 255, 1); 
} 

目的是能够在此完成。谢谢你的回答。

相关问题