gpt4 book ai didi

html - 如何导入 2 个不同的文件图标?

转载 作者:太空宇宙 更新时间:2023-11-04 09:47:27 24 4
gpt4 key购买 nike

我想知道如何导入新的图标包并将其放在同一个 css 文件中。我有 2 个图标文件....flaticon.woff 和 new.woff,我不知道如何在不产生错误的情况下调用 new.woff 的文件。我如何调用文件图标?

@font-face {  
font-family: "Flaticon";
url("./Flaticon.woff") format("woff"), src: url("./new.woff") format("woff"), font-weight: normal;
font-style: normal;
}

我放了这个但是 css 文件只调用了新的文件。

和....

.icon-buildings:before { content: "\f100"; }//new.woff file
.icon-add_disabled:before{content: "\f100";color: #d4d4d4;}// overwrites this(flaticons)

最佳答案

创建两个@font-faces,每种字体一个。

@font-face {  
font-family: "Flaticon";
src: url("./Flaticon.woff") format("woff");
font-style: normal;
}

@font-face {
font-family: "New";
src: url("./new.woff") format("woff");
font-style: normal;
}

然后在需要的时候分配字体,例如

.icon-buildings:before {
font-family: "New";
content: "\f100";
}

关于html - 如何导入 2 个不同的文件图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39377903/

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