element-ui中el-table表格的表头和表格内容居中显示

Element UI表格居中技巧
本文详细介绍如何使用Element UI框架使表格及其内容居中显示。通过设置header-cell-style和cell-style属性,可以实现整个表格的居中效果。另外,针对单个表格内容的居中,只需在el-table-column上添加align='center'即可。

在这里插入图片描述

这是让整个表格和内容居中的方式: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>
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值