您可以通过在父元素的 CSS(通常是<ul>
)上将list-style
设置为none
来删除项目符号。
ul {
list-style: none;
}
如果你想删除缩进,你可能还想添加padding: 0
和margin: 0
。
有关列表格式化技术的精彩演练,请参阅列表教程 。
如果你正在使用 Bootstrap,它有一个 “没有样式” 的类:
删除列表项上的默认列表样式和左边距(仅限直接子项)。
<ul class="unstyled">
<li>...</li>
</ul>
http://twitter.github.io/bootstrap/base-css.html#typography
<ul class="list-unstyled">
<li>...</li>
</ul>
你需要使用list-style: none;
<ul style="list-style: none;">
<li> ...</li>
</ul>