HTML / CSS多级嵌套列表编号

前端之家收集整理的这篇文章主要介绍了HTML / CSS多级嵌套列表编号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Can ordered list produce result that looks like 1.1,1.2,1.3 (instead of just 1,2,3,…) with css? 10个
有没有办法使用直接HTML和CSS列表(< ul>或< ol>)来实现以下编号?
1. Link 1
2. Link 2
3. Link 3
    3.1. Link 3.1
    3.2. Link 3.2
    3.3. Link 3.3
4. Link 4
    4.1. Link 4.1
        4.1.1 Link 4.1.1
        4.1.2 Link 4.1.2
5. Link 5

提前致谢!

解决方法

您可以使用CSS counters
ol {
    counter-reset: section;
    list-style-type: none;
}

li:before {
    counter-increment: section;
    content: counters(section,".") ". Link " counters(section,".") " ";
}

工作演示(also on JSBin):

ol {
  counter-reset: section;
  list-style-type: none;
}

li:before {
  counter-increment: section;
  content: counters(section,".") " ";
}
<ol>
  <li></li>
  <li></li>
  <li>
    <ol>
      <li></li>
      <li></li>
      <li></li>
    </ol>
  </li>
  <li>
    <ol>
      <li>    
        <ol>
        <li></li>
        <li></li>
        </ol>
      </li>
    </ol>
  </li>
  <li></li>
</ol>
原文链接:https://www.f2er.com/html/225241.html

猜你在找的HTML相关文章