gpt4 book ai didi

javascript - li::IE8 之前

转载 作者:行者123 更新时间:2023-11-30 10:39:59 25 4
gpt4 key购买 nike

我正在使用 li::before 删除一些内容,但这段代码适用于所有浏览器,但不适用于 IE8。为什么?我需要 JavaScript 解决方案吗?

这是我的代码:

.NewsArchive li::before, .NewsSubMenu li::before {
content: "• ";
display: none !important;
}

最佳答案

IE8 不支持CSS3's double-colon notation用于 CSS1 和 CSS2 伪元素。该表示法仅受 IE9 and later 支持, 和其他浏览器。

如果你需要IE8支持,你必须使用单冒号:

.NewsArchive li:before, .NewsSubMenu li:before {
content: "• ";
display: none !important;
}

不需要 JavaScript。而且您很可能也不需要那个 !important

关于javascript - li::IE8 之前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11608702/

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