<div ng-if="item.attribute == 'attribute1'">
doSomething
</div>
<button class="button button-block button-postive waves-effect waves-button waves-light">
Button 1
</button>
item.attribute == attribute1の場合、ボタンの色がサンゴになるようにしたい
.button.button-block, .button.button-full {
background-color: coral;
color: #fff;
}
これは可能ですか?ありがとうございました