2015-10-21 108 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); 
} 

目的是能夠在此完成。謝謝你的回答。

相關問題