gpt4 book ai didi

html - 基于名称的 CSS 类

转载 作者:太空宇宙 更新时间:2023-11-04 00:43:57 26 4
gpt4 key购买 nike

在我的 .css 文件中,我有多个类代表我的网页图标。根据我从代码中检索到的内容,我想更改图标。

<ng-container *ngFor="let item of parameterStruct">
<span class="m-menu__link-wrap">
<i class="sidebar-icon HERE"></i>
<span class="m-menu__link-text icon-padding sideBar-text"
style="padding-left: 15px; font-size: 12px">
{{ item.description |translate }}
</span>
</span>
</ng-container>

我在 HERE 写的地方(在 i 元素中)我想插入我的 .css 类,即 item.description + '-icon'(例如“myClass-icon”)。

我该怎么做?

最佳答案

您可以使用 NgClass directive .像这样的东西:

<i class="sidebar-icon" [ngClass]="{'first-icon': item.description === 'first', 'second-icon': item.description === 'second'}"></i>

关于html - 基于名称的 CSS 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57660565/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com