Firefox 浏览器图像显示问题
在尝试在 CSS 类中显示图像时,利用了 content 属性:
.googlePic { content: url('../../img/googlePlusIcon.PNG'); margin-top: -6.5%; padding-right: 53px; float: right; height: 19px; }
虽然这种方法在 Google Chrome 和 Safari 上渲染图像被证明是有效的,但在 Firefox 中出现了一个意想不到的问题:图像失败
解决方案:
问题在于 Firefox 对 content 属性的实现,该属性主要与 ::before 和 ::after 伪元素兼容。为了纠正这种情况,可以将 CSS 代码修改如下:
.googlePic::before { content: url('../../img/googlePlusIcon.PNG'); }
通过利用 ::before 伪元素,您也可以在 Firefox 中成功显示图像。请参阅提供的文档链接以进一步了解内容属性的用法:
http://www.htmldog.com/reference/cssproperties/content/
以上是使用 CSS `content` 属性时,为什么我的图像在 Firefox 中不显示?的详细内容。更多信息请关注PHP中文网其他相关文章!