我使用了ngx-star-rating插件。我尝试了各种方法,如填充和颜色,但它不起作用!有什么建议吗?我应该怎么做才能把星级从黄色染成其他颜色?
发布于 2020-10-14 10:58:50
CSS选择器label.star:before
和属性color
就是你要找的。
input.star:checked ~ label.star:before {
color: pink !important;
}
你可以查看this demo。
https://stackoverflow.com/questions/64351746
复制相似问题