嘿,我想知道你是否可以有一個HTML表,並使某些列有whitespace: nowrap
和其他列有whitespace: normal
?HTML表格與空白nowrap
例子:
<table>
<thead>
<tr>
<th>No wrap</th>
<th>Wrap</th>
</tr>
</thead>
<tbody>
<tr>
<td>Small text</td>
<td>Wrap this longgggg text</td>
</tr>
</tbody>
</table>
這將是很好,如果你能舉一個例子.. –