sunny123456

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

怎么让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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

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

<el-table-column label="姓名" prop="realname" align="center">
  </el-table-column>
  • 1
  • 2
https://blog.csdn.net/weixin_44880730/article/details/109118362
posted on 2022-04-21 21:47  sunny123456  阅读(1683)  评论(0编辑  收藏  举报