如何从列表项中删除缩进

时间:2018-07-26 19:36:39

标签: html list text-indent

这是我的代码。如何从列表项中删除缩进?代码在哪里?

operator.

1 个答案:

答案 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>