<div class="secondary-value"
ng-style="{ background: totalColour || '#0000ff' }"></div>
如何将打印css添加到ng-style?或者如何在ng-style属性中使用!important。我试图打印页面,但ng-style属性css不打印。
答案 0 :(得分:0)
当你使用ng-style时,你需要使用引号
<div class="secondary-value"
ng-style="{ 'background-color': totalColour || '#0000ff !important' }"></div>