
这是让整个表格和内容居中的方式:header-cell-style设置头部居中;cell-style设置单元格内容居中
<el-table
:data="tableData"
style="width: 100%;"
:height="bodyHeight - 172"
:header-cell-style="{'text-align':'center'}"
:cell-style="{'text-align':'center'}"
>
如果想让单个表格的内容居中:只需要在el-table-column上加上align=‘center’
<el-table-column label="招聘人数" prop="require_num" min-width="150" align='center'>
</el-table-column>
Element UI表格居中技巧
本文详细介绍如何使用Element UI框架使表格及其内容居中显示。通过设置header-cell-style和cell-style属性,可以实现整个表格的居中效果。另外,针对单个表格内容的居中,只需在el-table-column上添加align='center'即可。
3036

被折叠的 条评论
为什么被折叠?



