如何结合 Angular ngStyle 指令使用“repeat()”css 函数?

Posted

技术标签:

【中文标题】如何结合 Angular ngStyle 指令使用“repeat()”css 函数?【英文标题】:How to use "repeat()" css function combined with Angular ngStyle directive? 【发布时间】:2021-01-12 09:37:00 【问题描述】:

假设您在某个组件的 html 模板中有 div

<div [ngStyle]="'grid-template-columns': repeat(5, 20%)"></div>

如何使repeat() css 函数在那种情况下工作?

【问题讨论】:

【参考方案1】:

你只需要把右边放在引号里:

<div [ngStyle]="'grid-template-columns': 'repeat(5, 20%)'"></div>

【讨论】:

以上是关于如何结合 Angular ngStyle 指令使用“repeat()”css 函数?的主要内容,如果未能解决你的问题,请参考以下文章

Angular 2 ngStyle 和背景图像 [重复]

为啥将 ngStyle 指令声明到 [] 中?

如何在 Angular 中使用 ngStyle 实现 IF THEN ELSE?

如何在Angular 4中使用ngStyle作为背景网址

如何在Angular 2中使用ngStyle将transform translate属性应用于元素

Angular 我如何在 [ngStyle] 和类上应用条件。如果条件为真 [ngStyle] 运行,否则类运行