div 元素不尊重内联列表的填充

发布于 2024-10-19 15:45:40 字数 628 浏览 0 评论 0原文

我正在使用内联列表,并且我注意到下一行的 div 不会尊重其填充(即它是通过 li 元素的边框绘制的)。我能做些什么吗?

<html>
  <head>
    <style type="text/css">
      ul {
        margin: 0;
        padding: 0;
      }

      li {
        display: inline;
        list-style-type: none;
        padding: 10px;
        border: 1px solid gray;
      }

      div {
        border: 1px solid black;
      }
    </style>
  </head>
  <body>
    <ul>
      <li>Hello</li>
      <li>World</li>
    </ul>
    <div>
      Hello, World!
    </div>
  </body>
</html>

I'm using an inline list, and I noticed that that the div on the next line won't respect its padding (i.e. it is drawn right through the li elements' border). Is there anything I can do about that?

<html>
  <head>
    <style type="text/css">
      ul {
        margin: 0;
        padding: 0;
      }

      li {
        display: inline;
        list-style-type: none;
        padding: 10px;
        border: 1px solid gray;
      }

      div {
        border: 1px solid black;
      }
    </style>
  </head>
  <body>
    <ul>
      <li>Hello</li>
      <li>World</li>
    </ul>
    <div>
      Hello, World!
    </div>
  </body>
</html>

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

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

发布评论

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

评论(2

┊风居住的梦幻卍 2024-10-26 15:45:40

内联元素不受顶部和底部填充的影响(请参阅原因)。

相反,您可以将它们设为inline-block

li {
   display: inline-block;
   zoom: 1; /* for IE */
   *display: inline; /* for IE */
}

Inline elements are not affected by top and bottom padding (see why).

Instead you can make them inline-block:

li {
   display: inline-block;
   zoom: 1; /* for IE */
   *display: inline; /* for IE */
}
格子衫的從容 2024-10-26 15:45:40

对于 li,指定 display: inline-block; 而不仅仅是 inline

For the li, specify display: inline-block; instead of just inline

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