你可以利用 style binding 設定內部 styles
https://angular.io/guide/template-syntax#style-binding
app\app.component.html
-----
<h1 style="color:orange" >
Welcome to {{title}}!
</h1>
顯示
app\app.component.html
-----
<h1 [style.color]="false ? 'orange':'pink' " >
Welcome to {{title}}!
</h1>
顯示
ngStyle 參考來源
https://angular.io/guide/template-syntax#ngstyle
app\app.component.html
-----
<h1 [ngStyle]="{'color':'orange','background-color':'gray'}">
Welcome to {{title}}!
</h1>
顯示