垂直对齐(适用于 IE!)

发布于 2024-08-05 20:47:17 字数 458 浏览 8 评论 0原文

HTML:

<div class="product">
  <a href="#" class="thumb"><img src="img/thumb_md.png" alt="" /></a>
</div>

CSS:

.product .thumb {           
  position: relative;
  display: table-cell;
  vertical-align: bottom;
  height: 130px;
}

..在现代浏览器中工作得很好,当然,IE 除外!

有什么解决方法吗?我尝试的另一个解决方案是position:absolute;底部:0;但它会干扰上面的下拉列表,其中 z-index 似乎没有任何效果。

谢谢!

HTML:

<div class="product">
  <a href="#" class="thumb"><img src="img/thumb_md.png" alt="" /></a>
</div>

CSS:

.product .thumb {           
  position: relative;
  display: table-cell;
  vertical-align: bottom;
  height: 130px;
}

..works great in modern browser, except, ofcourse, IE!

Is there any workaround? The other solution I tried was position:absolute; bottom:0; but it interferes with the drop-down above where z-index doesn't seem to have any effect.

Thanks!

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

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

发布评论

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

评论(1

莫相离 2024-08-12 20:47:17

是的,使用相对+绝对定位代替。其要点是:

a.thumb { display: block; position: relative; height: 130px; }
a.thumb img { display: block; position: absolute; bottom: 0; }

请参阅相对定位内的绝对定位

Yes, use relative+absolute positioning instead. The barebones of that is:

a.thumb { display: block; position: relative; height: 130px; }
a.thumb img { display: block; position: absolute; bottom: 0; }

See Absolute Positioning Inside Relative Positioning.

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