如何为ng-style添加print css或!important?

时间:2017-10-24 14:42:17

标签: html angularjs printing ng-style

<div class="secondary-value" 
  ng-style="{ background: totalColour || '#0000ff' }"></div> 

如何将打印css添加到ng-style?或者如何在ng-style属性中使用!important。我试图打印页面,但ng-style属性css不打印。

1 个答案:

答案 0 :(得分:0)

当你使用ng-style时,你需要使用引号

<div class="secondary-value" 
 ng-style="{ 'background-color': totalColour || '#0000ff !important' }"></div>