需要一个没有任何项目符号的无序列表

我创建了一个无序列表。 我觉得无序列表中的子弹很麻烦,所以我想删除它们。

是否有可能没有子弹列表?


您可以通过在父元素的CSS(通常是<ul> )上将list-style-typenone来删除项目符号,例如:

ul {
  list-style-type: none;
}

如果您还想删除缩进,您可能还想要添加padding: 0margin: 0

请参阅Listutorial以获取列表格式化技巧的完美演练。


如果你使用Bootstrap,它有一个“无风格”的类:

删除列表项上的默认列表样式和左边填充(仅限直接子项)。

Bootstrap 2:

<ul class="unstyled">
   <li>...</li>
</ul>

http://twitter.github.io/bootstrap/base-css.html#typography

Bootstrap 3和4:

<ul class="list-unstyled">
   <li>...</li>
</ul>

http://getbootstrap.com/css/#type-lists


你需要使用list-style: none;

<ul style="list-style: none;">
    <li> ...</li>
</ul>
链接地址: http://www.djcxy.com/p/779.html

上一篇: Need an unordered list without any bullets

下一篇: How do you parse and process HTML/XML in PHP?