我想在字体真棒图标中添加图像。假设我有 icon-star-empty 并想用照片填充它的内部部分。那可能吗?我已经破解了它,但真的得到了任何地方。任何帮助,将不胜感激。
[class^="icon-"]::before,
[class*=" icon-"]::before {
font-family: FontAwesome;
font-style: normal;
display: inline-block;
text-decoration: inherit;
}
.icon-star-empty:before {
content: "\f006";
}
.iconBackground:before {
font-size: 72px;
background: -webkit-gradient(linear, left top, left bottom, from(#f00), to(#333));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display initial;
}
在下面为每个请求添加了一个小提琴。