我在angular2应用程序中使用Primeng。 我需要一个简单的按钮,并希望在按钮悬停时更改背景颜色。谁能帮助如何实现这一目标?请在下面找到我的代码:
<button pButton type="button" label="{{item}}" class="reasonButton"></button>
.reasonButton{
background-color:#ececec;
color:#000;
}
答案 0 :(得分:2)
试试这样:
<button pButton type="button" label="{{item}}" class="reasonButton"></button>
并使用reasonButton类名
覆盖css.reasonButton {
background-color: #ececec !important;
color: #000 !important;
}