html – 如何在列表编号中为单词添加前缀

html – 如何在列表编号中为单词添加前缀,第1张

概述所以我一直在搜索高低,并且无法找到一个看似简单问题的答案. 我有一个这样的有序列表: <ol> <li>Some text here</li> <li>Some more text here..</li> <li>Oh yeah, here's some pretty text</li></ol> 哪个显示: Some text here Some more text here.. 所以我一直在搜索高低,并且无法找到一个看似简单问题的答案.

我有一个这样的有序列表:

<ol>  <li>Some text here</li>  <li>Some more text here..</li>  <li>Oh yeah,here's some pretty text</li></ol>

哪个显示:

Some text here Some more text here.. Oh yeah,here’s some pretty text

我想要真正展示的内容:

Step 1. Some text here

Step 2. Some more text here..

Step 3. Oh yeah,here’s some pretty text

问题:这是否可行,如果是这样,如何在不使用可疑解决方案的情况下进行此 *** 作?

解决方法 你可以使用:: before(:ie8之前)和counter-reset / increment
ol {  counter-reset: number;}li {  List-style: none;  counter-increment: number;}li::before {  content: "Step " counter(number) ".";  position: relative;  left:-5px}
<ol>  <li>Some text here</li>  <li>Some more text here..</li>  <li>Oh yeah,here's some pretty text</li></ol>
总结

以上是内存溢出为你收集整理的html – 如何在列表编号中为单词添加前缀全部内容,希望文章能够帮你解决html – 如何在列表编号中为单词添加前缀所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1107249.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存