我创建了一个无序列表。 我觉得无序列表中的项目符号很麻烦,因此我想删除它们。
可以有没有项目符号的清单吗?
#1楼
您可以通过在父元素(通常为<ul>
)的CSS上将list-style-type
为none
来删除项目符号,例如:
ul {
list-style-type: none;
}
如果还希望删除缩进,则可能还需要在其中添加padding: 0
和margin: 0
。
有关列表格式技术的详细演练,请参见Listutorial 。
#2楼
您需要使用list-style: none;
<ul style="list-style: none;">
<li> ...</li>
</ul>
#3楼
使用以下CSS:
ul {
list-style-type: none
}
#4楼
在CSS中...
ul {
list-style: none;
}
#5楼
在CSS中,样式
list-style-type: none;