@Component({
selector: 'app-style',
template: `
<style>
.test {
color: {{ textColor }}
}
</style>
`
})
export class StyleComponent {
textColor = "red";
}
Run Code Online (Sandbox Code Playgroud)
这似乎不起作用,我需要我的样式是动态的,并在一些特定的CSS类.还有其他方法可以做到这一点吗?