gpt4 book ai didi

html - 如何使表格标题居中?

转载 作者:太空宇宙 更新时间:2023-11-04 08:17:10 24 4
gpt4 key购买 nike

我在表格上有一个很长的标题,我希望它们都对齐到彼此的中心。

HTML:

<table>
<caption>This is a very long caption.</caption>
<tr>
<td>1</td><td>2</td>
</tr>
<tr>
<td>3</td><td>4</td>
</tr>
</table>

CSS:

caption {
white-space: nowrap;
}

https://codepen.io/anon/pen/RZyxzg

最佳答案

为此使用 flexbox,使用 align-items:center

table {
display: flex;
flex-direction: column;
align-items: center;
border: red solid
}
<table>
<caption>This is a very long caption.</caption>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>4</td>
</tr>
</table>

关于html - 如何使表格标题居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45815155/

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