欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

angular 样式

程序员文章站 2022-04-24 16:45:41
...

组件样式


 <div [ngClass]="{'userClass':true}"></div>
 <div [ngClass]="['blue', 'round']"></div>
 <div [ngStyle]="{color: 'white', 'background-color': 'blue'}"></div>
 <div [style.background-color]="'yellow'"></div>

转载于:https://www.jianshu.com/p/a447bfaefe74