我已经从here安装了手风琴。
它工作正常,但我不能覆盖它的CSS。
.card-block {
text-align: left;
background-color: #E2E2E2;
}
a:focus {
background: transparent;
text-decoration: none!important;
}
a:hover{
background: transparent;
text-decoration: none!important;
}
答案 0 :(得分:2)
对于angular2中的更多规范,您必须在css类之前使用/deep/
/deep/.card-block {
text-align: left;
background-color: #E2E2E2;
}
/deep/a:focus {
background: transparent;
text-decoration: none!important;
}
/deep/a:hover{
background: transparent;
text-decoration: none!important;
}