gpt4 book ai didi

html - CSS:在td(表格)中从新行开始所有单词

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

我有这样的代码:

<table>
<tr>
<th>#</th>
<th>Text</th>
</tr>
<tr>
<td>1</td>
<td>Long Long cell content</td>
</tr>
<tr>
<td>2</td>
<td>Long Long cell content</td>
</tr>
</table>

和风格:

table{
border: 1px solid green;
}

fiddle :https://jsfiddle.net/t5rxtweo/

现在它在大分辨率下看起来如此:

enter image description here

但是小的:

enter image description here

而且我也想这样:

enter image description here

我可以用纯 css 来做吗?

最佳答案

你能定义“小分辨率”吗?

无论如何,这里有一个您可以玩的演示。

https://jsfiddle.net/t5rxtweo/1/

@media screen and (max-width: 360px) {
td {
word-spacing: 9999999px;
}
}

<table>
<tr>
<th>#</th>
<th>Text</th>
</tr>
<tr>
<td>1</td>
<td>Long Long cell content</td>
</tr>
<tr>
<td>2</td>
<td>Long Long cell content</td>
</tr>
</table>

关于html - CSS:在td(表格)中从新行开始所有单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34417731/

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