首页 前端知识 el-table中的文本居中

el-table中的文本居中

2024-05-09 11:05:03 前端知识 前端哥 756 237 我要收藏

 el-table中的文本居中示例图

整个表格和内容居中的方式:
header-cell-style 设置头部居中;
cell-style 设置单元格内容居中
<el-table
    :data="tableData"
    :header-cell-style="{'text-align':'center'}"
    :cell-style="{'text-align':'center'}"
    style="width: 100%">
</el-table>

单个表格的内容居中:只需要在el-table-column上加上align=‘center’

<el-table-column label="姓名" prop="realname" align="center">
</el-table-column>

转载请注明出处或者链接地址:https://www.qianduange.cn//article/7718.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!