ol 中的单个 li 没有编号 [英] No number for a single li in an ol

查看:12
本文介绍了ol 中的单个 li 没有编号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法不显示 ol.li 中单个 li 的数字?如果它仍然对列表的计数有贡献,这不是问题(我知道这可能看起来很奇怪).

解决方案

是的,只需设置 CSS list-style-type 属性到 none 在特定

  • 上.

    li.nostyle {列表样式类型:无;}

      <li>one</li><li>两个</li><li class="nostyle">三</li><li>四</li>

    Is there a way to not display the number for a single li in an ol. It's not an issue if it still contributes to the count of the list (I know this might seem like a strange request).

    解决方案

    Yes, just set the CSS list-style-type property to none on the particular <li>.

    li.nostyle {
      list-style-type: none;
    }

    <ol>
      <li>one</li>
      <li>two</li>
      <li class="nostyle">three</li>
      <li>four</li>
    </ol>

    这篇关于ol 中的单个 li 没有编号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

  • 查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆