将无序列表中的列表项左对齐

发布于 2025-01-02 12:55:47 字数 586 浏览 0 评论 0原文

我有以下 html 和 css:

HTML:

<div id="wrapper">
  <ul>
    <li>li1</li>
    <li>li2</li>
  </ul>
</div>

CSS:

#wrapper
{
}

#wrapper ul
{
    width:50px;
    height:100px;
    border-style:solid;
    border-width:1px;
    list-style-type:none;
}

#wrapper ul li
{
    border-style:solid;
    border-width:1px;   
}

这会产生以下无序列表:

如何对齐列表- 无序列表左侧的项目?

我在“#wrapper ul li”中尝试了浮动和边距,但这并不能解决问题。

I have the following html and css:

HTML:

<div id="wrapper">
  <ul>
    <li>li1</li>
    <li>li2</li>
  </ul>
</div>

CSS:

#wrapper
{
}

#wrapper ul
{
    width:50px;
    height:100px;
    border-style:solid;
    border-width:1px;
    list-style-type:none;
}

#wrapper ul li
{
    border-style:solid;
    border-width:1px;   
}

Which results in the following unordered list:

How do I align the list-items to the left in the unordered list?

I've tried float and margin in the "#wrapper ul li", but that doesn't solve the problem..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

故人的歌 2025-01-09 12:55:48

padding-left: 0pt 添加到 #wrapper ul 块:

#wrapper ul
{
    width:50px;
    height:100px;
    border-style:solid;
    border-width:1px;
    list-style-type:none;
    ' CHECK THE NEXT LINE '
    padding-left: 0pt;
}

Add a padding-left: 0pt to the #wrapper ul block:

#wrapper ul
{
    width:50px;
    height:100px;
    border-style:solid;
    border-width:1px;
    list-style-type:none;
    ' CHECK THE NEXT LINE '
    padding-left: 0pt;
}
清泪尽 2025-01-09 12:55:48

您的无序列表标记需要放在外部

#wrapper ul {
    list-style-type: none;
    list-style-position: outside;
}

Your unordered list markers need to be put outside:

#wrapper ul {
    list-style-type: none;
    list-style-position: outside;
}
梦里南柯 2025-01-09 12:55:48

尝试减少 UL 元素的左侧填充。如果没有帮助,请使用 UL 和 LI 的 padding-left 和 margin-left。

Try to decrease padding-left of your UL element. If it won't help, play with padding-left and margin-left of UL and LI.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文