css – 内容网址不会在firefox浏览器上显示图像

前端之家收集整理的这篇文章主要介绍了css – 内容网址不会在firefox浏览器上显示图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
.googlePic{
    content: url('../../img/googlePlusIcon.PNG');
    margin-top: -6.5%;
    padding-right: 53px;
    float:right;
    height: 19px;

}

这是我的css文件中我的类googlePic的一个例子。它的工作原理,并打印出很好的谷歌chrome和safari。但是,它不适用于Firefox。第N打印出来。请帮忙 :)

解决方法

content属性适用于:: before和:: after。
googlePic::before
{
 content: url('../../img/googlePlusIcon.PNG');
}

读这个:
http://www.htmldog.com/reference/cssproperties/content/

如果指定了!DOCTYPE,IE8仅支持content属性

原文链接:https://www.f2er.com/css/218989.html

猜你在找的CSS相关文章