我想要做的就是用CSS图标字体替换CSS中的背景图像,而不是图标图像。 我做不到。 这是CSS属性:
.social-networks .twitter{background:url(../images/social/twitter.png);}
这是PHP中的代码:
<ul class="social-networks">
<?php if (my_option('twitter_link')): ?>
<li>
<a href="<?php echo my_option('twitter_link'); ?>" class="twitter">twitter</a>
</li>
<?php endif; ?>
我插入无效字体的方式是<span class="icon">A</span>
答案 0 :(得分:17)
你可以尝试这样的事情: FIDDLE
假设你有你的DIV:
<div class="test"></div>
你创建这样的css样式:
.test {
width: 100px;
height: 100px;
border: 2px solid lightblue;
}
.test:before {
content: "H";
width: 100%;
height: 100%;
font-size: 5.0em;
text-align: center;
display: block;
line-height: 100px;
}
在属性content
中,您选择了“信件”,然后您可以更改font-size
,font-weight
,color
等...
答案 1 :(得分:5)
css中有一个内容属性:
.icon-rocket:after {
content: "{Symbol for rocket}";
}
答案 2 :(得分:0)
使用导航文字而不是背景图片
$(".slider").owlCarousel({
navigation : true,
slideSpeed : 500,
singleItem:true,
navigationText:['<i class="fa fa-chevron-left" aria-hidden="true"></i>', '<i class="fa fa-chevron-right" aria-hidden="true"></i>']
});
并为font awesome图标设置css属性。 这是图标的正常css。
.owl-button{
position:relative;
}
.owl-prev {
position:absolute;
top:0;
left:47%;
font-size: 30px;
}
.owl-next {
position:absolute;
top:0;
right:47%;
font-size: 30px;
}
答案 3 :(得分:0)
我提出了一些有趣的东西,即imo:CSS element()
函数。目前它是works only in firefox(因此请确保在该浏览器中打开最后链接的示例)。
这是HTML:
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<div class="bg-patterns">
<i class="material-icons" id="icon">pets</i>
</div>
<div class="with-icon-bg">
Hi! I'm paragraph with background made from ordinary HTML element! And BTW - I'm a pets lover.
</div>
...和带评论的CSS:
.material-icons {
/* icon font */
font-family: 'Material Icons';
color: #ddd;
}
/* this is a wrapper for elements you want to use
as backgrounds, should not be visible on page */
.bg-patterns {
margin-left: -90000cm;
}
.with-icon-bg {
/* all magic happens here */
background: -moz-element(#icon);
/* other irrelevant styling */
font-size: 25px;
width: 228px;
margin: 0 auto;
padding: 30px;
border: 3px dashed #ddd;
font-family: sans-serif;
color: #444;
text-align: center;
}
最后 - 有一个working example(jsFiddle)。