我正在尝试将样式应用于伪元素:after
<a class="overflow">{{item?.eco}}</a>
我需要更改 a:after 的背景颜色,并且需要在 html 中处理
类似于 [style.background]="red" to a:after in Html not in css
css
.featured-image:after { content: '';
background-color: var(--custom); }
html
<a class="featured-image"[style]="sanitizer.bypassSecurityTrustStyle('--custom:' + red)"></a>
ts
this.color = sanitizer.bypassSecurityTrustStyle('--custom')
我试过这样的东西,但它不工作
这样做的方法是什么?任何帮助将非常感激...