这是我的代码。如何从列表项中删除缩进?代码在哪里?
operator.
答案 0 :(得分:0)
您可以使用几行CSS(在style sheet中):
.nobullets {
list-style-type: none;
padding: 0;
margin: 0; /* Optional */
}
<ul class="nobullets">
<li>The comment</li>
<li>The product(s) involved</li>
<li>The source of comment</li>
</ul>