垂直对齐(适用于 IE!)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用相对+绝对定位代替。其要点是:
请参阅相对定位内的绝对定位。
Yes, use relative+absolute positioning instead. The barebones of that is:
See Absolute Positioning Inside Relative Positioning.