我發現This文章,但我想在:: before和:: after內容屬性中使用圖片,而不是字體圖標。Css - 將圖片用於僞元素
原文:
.icon-dribbble:before, .icon-dribbble:after {
content: "\e007";
}
最好的我想出迄今(它不工作,PIC確實出現,但如預期一樣在文章中它不工作):
.icon-dribbble:before, .icon-dribbble:after {
background-image: url('icon.png');
background-repeat:space;
background-size: 40px 40px;
background-position:center;
top:0px;
content: "";
}
添加'顯示:塊; height:40px;寬度:40px'呢? – LinkinTED
「不按預期工作」是什麼意思?另外,'background-repeat:space;'不是'background-repeat' AFAIK的有效值。 –
你能創建一個演示嗎? –