gpt4 book ai didi

html - 更改编号列表中的十进制前缀/后缀

转载 作者:行者123 更新时间:2023-11-28 19:07:10 26 4
gpt4 key购买 nike

大多数浏览器会像这样显示有序列表:

1. foo
2. bar
3. baz

有没有办法更改编号以改为使用前缀:

#1 foo
#2 bar
#3 baz

最佳答案

这是我能想到的最好的,你只在 Firefox 和 Chrome 中测试过

<style>
#hol-list li {
list-style-position: inside;
list-style-type: decimal;
position: relative;
}

#hol-list li:before {
content: "\0023";
position:absolute;
left: -10px;
}
</style>

<ol id="hol-list">
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>

关于html - 更改编号列表中的十进制前缀/后缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2800648/

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