<th data-field="FBJD_MaterialNo" data-sortable="true" style="width:130px;">物料编号</th> 居中
时间: 2023-10-30 21:06:21 浏览: 81
物料编码(Material code):
4星 · 用户满意度95%
要使 <th> 元素居中,您可以使用 CSS 样式来设置其文本对齐方式。在元素的 style 属性中,添加以下代码:
```html
<th data-field="FBJD_MaterialNo" data-sortable="true" style="width:130px; text-align: center;">物料编号</th>
```
上述代码中的 `text-align: center;` 将使文本在单元格中水平居中对齐。
阅读全文