gpt4 book ai didi

css - 如何在不垂直对齐的情况下垂直对齐 td 单元格中的图像

转载 作者:行者123 更新时间:2023-11-28 18:37:55 25 4
gpt4 key购买 nike

以下代码:

<div id="test">
<table>
<tbody>
<tr>
<td>
<img src="img1.jpg" />
<p>Bla bla bla</p>
<p><a href="#"><img src="img2.jpg"></a></p>
</td>
</tr>
</tbody>
</table>
</div>

和 CSS:

#test td {
width: 450px;
height: 220px;
vertical-align: top;
border-bottom: 1px solid #000;
border-right: 50px solid #fff;
}

#test td p {
margin: 0 0 10px 0;
width: 290px;
}

#test img {
padding: 20px 5px 5px 5px;
float:left;
}

如何将第二张图片与单元格底部的链接对齐?我在谷歌上搜索了很多,但没有一个解决方案适合我......

最佳答案

给容器 ( td ) position: relative和图像,或更具体地说 <p>其中包含图像,position: absolute; bottom: 0; . See it in action here .

关于css - 如何在不垂直对齐的情况下垂直对齐 td 单元格中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12215529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com