gpt4 book ai didi

css - 图标不显示在 mozilla firefox 中

转载 作者:太空宇宙 更新时间:2023-11-04 13:45:37 25 4
gpt4 key购买 nike

我的 CSS 代码:

[class^="icon-"],
[class*=" icon-"] {
display: inline-block;
width: 15px;
height: 15px;
}
.icon-star {
content: url(../img/icons/star.png);
}
.icon-plus-sign-alt {
content: url(../img/icons/icon-plus-sign-alt.png);
}
...
...

我的 HTML 代码:

<i class="icon-plus-sign-alt" title="INJURED" alt="INJURED"></i>

为什么这个图标在 Firefox (v 27) 中不显示?在 Chrome、Opera 和 IE 中是正确的。

在 Chrome 中:

enter image description here

在 FF 中:

enter image description here

最佳答案

根据 MDN , content 属性在与 beforeafter 一起使用时会生成内容伪元素,不是 HTML 元素本身。您需要将代码更改为

.icon-star:before {
content: url(../img/icons/star.png);
}
.icon-plus-sign-alt:before {
content: url(../img/icons/icon-plus-sign-alt.png);
}

此行为也在 W3 standard 中定义.我不知道为什么 Chrome 和 Opera 不使用伪元素。

关于css - 图标不显示在 mozilla firefox 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22540789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com