解决步骤:
3. 确保tr下的th和td宽度设置一致。
实例展示:
html部分:
```html
```
css部分:
```css
.layui-table tr th, td {
white-space: nowrap; / 不换行 /
padding: 5px; / 内边距 /
text-align: center; / 文本居中对齐 /
width: 33.4%; / 设置宽度 /
}