gpt4 book ai didi

html - 如何在表格单元格内正确垂直对齐图像+文本

转载 作者:太空狗 更新时间:2023-10-29 14:00:58 24 4
gpt4 key购买 nike

我需要vertical-align:top 'Some text' 和 'Other text'。以下对我不起作用,只有第二个单元格正确对齐。我不明白这是什么问题。

<style>
td {
vertical-align:top;
}
</style>

<table>
<tr>
<td><img src="icon.png"/> Some text </td>
<td> Other text </td>
</tr>
</table>

最佳答案

而不是使用:

td {
vertical-align: top;
}

使用:

td {
vertical-align: baseline;
}
td img {
vertical-align: top;
}

关于html - 如何在表格单元格内正确垂直对齐图像+文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13828901/

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