首页 > 解决方案 > 将表格宽度设置为最小

问题描述

我想知道如何使用 HTML 将表格的宽度更改为最小,以便表格显示为

N
A
M
E

N
A
M
E
H
E
R
E

这是代码

<table>
<tr>
<th>Name</th>
</tr>
<tr>
<td>Name here</td>
</tr>
</table>

标签: html

解决方案


如果在每个字符之间添加空格,它将起作用。

<table width="1px">
<tr>
<th>N a m e</th>
</tr>
<tr>
<td>N a m e  h e r e</td>
</tr>
</table>


推荐阅读