下面代码的输出应该是绿色的,对于 h2 标签,但它是正常的黑色,为啥?
Posted
技术标签:
【中文标题】下面代码的输出应该是绿色的,对于 h2 标签,但它是正常的黑色,为啥?【英文标题】:The output of the below code should be in green color, for h2 tag but it in normal black , Why?下面代码的输出应该是绿色的,对于 h2 标签,但它是正常的黑色,为什么? 【发布时间】:2020-05-29 19:08:39 【问题描述】:Angular Code 绿色没有出现
app.component.css
.text-successcolor:green
app.component.html
<h2 [ngClass]='borde'>Hello World</h2>
app.component.ts
showColor:true
public borde=text-success:this.showColor
【问题讨论】:
【参考方案1】:您没有将 showColor
设置为 true。您将类型设置为 true,但没有设置值。如果您将其更改为showColor = true
,它应该可以正常工作。
【讨论】:
以上是关于下面代码的输出应该是绿色的,对于 h2 标签,但它是正常的黑色,为啥?的主要内容,如果未能解决你的问题,请参考以下文章