使用 CSS 对齐图像列表

发布于 2024-08-06 14:41:53 字数 269 浏览 4 评论 0原文

我想将图像列表与“底部”对齐,如何使用 CSS 实现此目的?

背景:我想要一组照片底部对齐,图像大小不同。

<div>
  <ul>
    <li> <!-- image 1-->
    <li> <!-- image 2-->
    <li> <!-- image 3-->
  </ul>
</div>

谢谢。

I would like to align a list of images to 'bottom', how can I achieve this using CSS?

Background: I want a set of photos to be aligned to the bottom, the images are in different sizes.

<div>
  <ul>
    <li> <!-- image 1-->
    <li> <!-- image 2-->
    <li> <!-- image 3-->
  </ul>
</div>

Thanks.

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

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

发布评论

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

评论(4

简单气质女生网名 2024-08-13 14:41:53

所有这些绝对定位的问题是 li 元素将没有高度,因为图像元素是绝对的并且不再推动任何布局。通常这是一个糟糕的解决方案。

根据您的需要,这可能会起作用:

li {
  display: inline;
  vertical-align: bottom;
}

此处的实例:http://mooshell。网/zBCGW/

The problem with all this absolute positioning is that the li elements will have no height, since the image element is absolute and doesn't push any layout anymore. typically that's a bad solution.

Depending on what you need, this could work:

li {
  display: inline;
  vertical-align: bottom;
}

Live example here: http://mooshell.net/zBCGW/

渡你暖光 2024-08-13 14:41:53
ul{ li-style-type: none;}

li{position:relative; float: left; width:100px; height: 100px; }

li img { display: block; position: absolute; bottom: 0; }

然后

<ul> <li><img /></li>...</ul>
ul{ li-style-type: none;}

li{position:relative; float: left; width:100px; height: 100px; }

li img { display: block; position: absolute; bottom: 0; }

Then

<ul> <li><img /></li>...</ul>
不爱素颜 2024-08-13 14:41:53

下面的 CSS 应该可以解决这个问题:

ul{ li-style-type: none;}

li img {position:absolute;bottom:0;}

li {float:left;vertical-align:bottom;}

The following CSS should do the trick:

ul{ li-style-type: none;}

li img {position:absolute;bottom:0;}

li {float:left;vertical-align:bottom;}
娇俏 2024-08-13 14:41:53

只需尝试一下:

li img{
    position:absolute;
    bottom:0;
}
li{
    position:relative;
}

编辑:我刚刚读到它们旨在与 li 元素的底部对齐。我更新了代码,以便 img 将与 li 元素的底部对齐。

Just try try this:

li img{
    position:absolute;
    bottom:0;
}
li{
    position:relative;
}

EDIT: I just read that they are intended to be aligned to the bottom of the li element. I updated the code so the img will be aligned to the bottom of the li element.

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