在我们所有页面使用的全局样式表中,有以下行:
ul { margin: 0; }
li { list-style-type: none; padding-bottom: 3px; }
因此,我的页面中的任何 ul 都呈现在 li 旁边没有光盘的情况。
但是,在特殊情况下,我需要将光盘显示在 li 旁边。
我有一个带有“博客文章”类的 div,尽管下面的内容对我有用。
.blog_body ul { list-style-type: disc; }
.blog_body ol { list-style-type: decimal; }
然而,这并不能解决问题。
因此,使用以下 HTML 片段
<ul>
<li>Testing</li>
</ul>
<ol>
<li>Testing</li>
</ol>
结果:
Testing
1. Testing
li 中仍然没有光盘嵌套在 ul 中。关于如何将它们带到那里的想法?我的 CSS-fu 很弱....