gpt4 book ai didi

css - 在 ol li 列表中看不到数字

转载 作者:太空宇宙 更新时间:2023-11-03 23:11:09 26 4
gpt4 key购买 nike

我在一个网站上有一些编号列表,其中包含我目前正在开发的 wordpress 模板。但是,我看不到编号列表前的数字。

我已经为 ol > li 设置了 list-style-type: decimal 并尝试了一些其他的东西,但似乎都没有用。

有人可以帮助我吗? (这可能是一个非常明显的错误,但我不知道该怎么做)

谢谢!

Example page

最佳答案

您不在单个 li 上设置 list-style-type,而是在包含的 olul 上设置

在您的 CSS 中,您正在设置:

.wrapper .entry-content ol {
list-style-type: none;
margin: 0;
}

当列表样式需要向左填充 25 像素时,您还需要在 CSS 中进一步重置填充。

试试这个:

.wrapper .entry-content ol {
list-style-type: decimal;
margin: 0;
padding-left: 25px;
}

关于css - 在 ol li 列表中看不到数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32524653/

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