gpt4 book ai didi

javascript - CKEDITOR 中的虚线无序列表

转载 作者:行者123 更新时间:2023-11-28 13:36:05 26 4
gpt4 key购买 nike

我正在尝试找到一种在 CKEDITOR 中实现虚线列表(“–”)的方法。标准 html 只允许使用正方形和圆形。
有没有办法可以对无序列表使用虚线样式?

最佳答案

如果您不担心支持 IE7 及更早版本,您可以使用 :before 伪选择器来复制元素符号行为。

CSS:

ul.dashed li {
list-style: none;
}

ul.dashed li:before {
content: "- ";
}​

HTML

<ul class="dashed">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>

关于javascript - CKEDITOR 中的虚线无序列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9736035/

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