-moz-list-bullet 浏览器支持吗?

发布于 2024-12-23 06:02:27 字数 114 浏览 0 评论 0原文

webkit、opera 或 Internet Explorer 浏览器是否具有与 -moz-list-bullet 类似的属性?我尝试在谷歌上搜索浏览器对此功能的支持,但找不到任何信息。

Do the webkit, opera or internet explorer browsers have similiar property to -moz-list-bullet? I tried to search the browser support for this feature on google but could not find any information.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呆萌少年 2024-12-30 06:02:27

设置 list-style-type: none; 并使用 ::before 伪元素的工作方式与 -moz-list-bullet 非常相似在所有浏览器中。

演示:http://jsfiddle.net/ThinkingStiff/rurbN/

CSS:

ul {
    list-style-type: none;
}

li::before {
    color: red;
    content: '\2605';
    padding-right: 6px;
}

HTML:

<ul>
    <li>one</li>
    <li>two</li>
</ul>

输出:

< img src="https://i.sstatic.net/9ZTpS.png" alt="在此处输入图像描述">

Setting list-style-type: none; and using the ::before pseudo-element will work very similarly to -moz-list-bullet in all browsers.

Demo: http://jsfiddle.net/ThinkingStiff/rurbN/

CSS:

ul {
    list-style-type: none;
}

li::before {
    color: red;
    content: '\2605';
    padding-right: 6px;
}

HTML:

<ul>
    <li>one</li>
    <li>two</li>
</ul>

Output:

enter image description here

江挽川 2024-12-30 06:02:27

它没有在浏览器样式表属性引用中的任何位置列出:

It is not listed anywhere in the browser style sheet property references:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文