gpt4 book ai didi

HTML/CSS,让表格单元格平衡

转载 作者:行者123 更新时间:2023-11-28 16:40:57 25 4
gpt4 key购买 nike

我有一个格式如下的表格:

<table>
<tr>
<td>
Long list of info
Line two
</td>
<td>
Shorter list of info
</td>
</tr>
</table>

如何让它们同时显示在“tr”的顶部?我假设有一种方法可以停止使用 CSS 自动垂直对齐?

最佳答案

为了向 future 的观众澄清,我使用:

CSS:

td {
vertical-align: top;
}

HTML:

<table>
<tr>
<td>
Long list of info
Line two
</td>
<td>
Shorter list of info
</td>
</tr>
</table>

(Here's the fiddle)

关于HTML/CSS,让表格单元格平衡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20917336/

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