我有一些CSS看起来像这样:
#content h2 {
background: url(../images/tContent.jpg) no-repeat 0 6px;
}
我想用字体很棒的图标替换图像。
我不认为在CSS中使用图标作为背景图像。这是可能的,假设字体Awesome样式表/字体在我的CSS之前加载?
我有一些CSS看起来像这样:
#content h2 {
background: url(../images/tContent.jpg) no-repeat 0 6px;
}
我想用字体很棒的图标替换图像。
我不认为在CSS中使用图标作为背景图像。这是可能的,假设字体Awesome样式表/字体在我的CSS之前加载?
当前回答
我参加聚会有点晚了。只是想建议另一种方式。
button.calendar::before {
content: '\f073';
font-family: 'Font Awesome 5 Free';
left: -4px;
bottom: 4px;
position: relative;
}
位置,左侧和底部用于对齐图标。
有时添加字体重量:600或以上也有帮助。
其他回答
巩固以上所有内容,下面是工作良好的最终类
.faArrowIcon {
position:relative;
}
.faArrowIcon:before {
font-family: FontAwesome;
top:0;
left:-5px;
padding-right:10px;
content: "\f0a9";
}
您不能使用文本作为背景图像,但可以使用:before或:after伪类将文本字符放置在您想要的位置,而不必添加各种凌乱的额外标记。
请确保在实际的文本包装器上设置position:相对位置,以便定位工作。
.mytextwithicon {
position:relative;
}
.mytextwithicon:before {
content: "\25AE"; /* this is your text. You can also use UTF-8 character codes as I do here */
font-family: FontAwesome;
left:-5px;
position:absolute;
top:0;
}
编辑:
Font Awesome v5使用了比旧版本更多的字体名称:
对于FontAwesome v5,免费版本,使用:Font -family: "Font Awesome 5 Free" 对于FontAwesome v5, Pro版本,使用:Font -family: "Font Awesome 5 Pro"
注意,您也应该设置相同的font-weight属性(似乎是900)。
找到字体名称的另一种方法是右键单击页面上的示例字体awesome图标,并获得字体名称(与找到utf-8图标代码的方法相同,但请注意,您可以在:before上找到它)。
要使用字体awesome使用css遵循以下步骤-
步骤1 -在CSS中添加FontAwesome字体
/*Font Awesome Fonts*/
@font-face {
font-family: 'FontAwesome';
//in url add your folder path of FontAwsome Fonts
src: url('font-awesome/fontawesome-webfont.ttf') format('truetype');
}
使用下面的css在HTML的class元素上应用字体
.sorting_asc:after {
content: "\f0de"; /* this is your text. You can also use UTF-8 character codes as I do here */
font-family: FontAwesome;
padding-left: 10px !important;
vertical-align: middle;
}
最后,使用“sorting_asc”类在所需的HTML标签/元素上应用css。
似乎给出的答案并没有给出一个真正的背景,因为fontawesome是在你想要的背景区域之外渲染的。 下面是我制作“真实”背景效果的方法:
html:
<div id="bloc" class="bg_ico_outer" style="">
<i class="fa fa-bookmark-o bg_ico"></i>
<div class='bloc_inner'>
<h2>test fontawesome as background</h2>
</div>
</div>
css:
.bg_ico {
position: absolute;
top: 0px;
right: -10px;
font-size: 17em;
color: green;
transform: rotate(25deg);
}
.bg_ico_outer{position: relative; overflow: hidden;}
#bloc{
height: 200px;
width:200px;
background: blue;
margin:50px auto;
}
.bloc_inner{
position: absolute;
}
h2{color: white;}
为此,你只需要通过:before或:after向所需元素添加content属性和font-family属性。
例如:我想在我的帖子中所有的a元素之后附加一个附件图标。所以,首先我需要搜索这样的图标是否存在于fontawesome。就像我在这里找到的那个箱子,也就是一个回形针。然后我右键单击那里的图标,在pseudo属性之前输入::,以获取它正在使用的内容标记,在我的例子中,我发现它是\f0c6。然后我会在css中这样使用它:
.post a:after {
font-family: FontAwesome,
content: " \f0c6" /* I added a space before \ for better UI */
}