ant table 里标题宽度单独设置换行
时间: 2023-10-02 21:05:20 浏览: 77
ant design的table组件实现全选功能以及自定义分页
可以使用 `table-layout: fixed` 和 `word-wrap: break-word` 属性来实现标题宽度单独设置换行。
具体操作如下:
1. 在 `table` 标签中添加 `style` 属性,设置 `table-layout: fixed` 。
```html
<table style="table-layout: fixed;">
```
2. 在 `th` 标签中添加 `style` 属性,设置 `word-wrap: break-word`。
```html
<th style="word-wrap: break-word;">标题</th>
```
这样设置后,当标题过长时,会自动换行。同时,其他列的宽度也不会受到该列宽度的影响。
阅读全文