gpt4 book ai didi

html - 将 Font Awesome 图标嵌入到外部 css 文件

转载 作者:行者123 更新时间:2023-11-28 10:26:35 24 4
gpt4 key购买 nike

如何将 Font Awesome 图标嵌入到外部 css 样式表。

对于 Font Awesome 5 和免费图标---

#preview .buttons .ok {
border: 1px solid #F5F5F5;
border-radius: 4px;
width: 28px;
height: 28px;
font-size: 20px;

}
.ok:before {
content: "\e900";
display: inline-block;
font-family: "Font Awesome 5 Free";
font-weight: 700;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
}

现在试试..

最佳答案

\e900 在 font awesome 的图标中不存在...

它与其他(如 \f2b9)配合得很好

查看此处的图标并将 unicode 复制到 css:https://fontawesome.com/icons?d=gallery

并将如下链接放入您的head标签

#preview .buttons .ok {
border: 1px solid #F5F5F5;
border-radius: 4px;
width: 28px;
height: 28px;
font-size: 20px;

}
.ok:before {
content: "\f2b9";
display: inline-block;
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css" integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ" crossorigin="anonymous">


<div id='preview'>
<div class='buttons'>
<div class='ok'></div>
</div>
</div>

关于html - 将 Font Awesome 图标嵌入到外部 css 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51399884/

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