1. 首页
  2. HTML&CSS

table td自适应宽度设置(根据内容自动拉伸)

table td或th如何格局单元格内容自适应宽度?table td th根据表格内容自动拉伸CSS属性,新手站长网分享内联样式style和CSS方法:

table td th自适应宽度样式

内联样式style方法:

<table>
    <tr>
        <th style="white-space:nowrap;">根据文字长度自动调整宽度</th>
    </tr>
    <tr>
        <td style="white-space:nowrap;">根据文字长度自动调整宽度</td>
    </tr>
</table>

CSS方法:

td
{
  white-space: nowrap;
}

让table th tr根据单元格内容自动调整宽带的CSS样式为:white-space:nowrap;

阿里云官方活动:https://t.aliyun.com/U/FzmsXA

腾讯云官方活动:https://curl.qcloud.com/oRMoSucP