sunny123456

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  1796 随笔 :: 22 文章 :: 24 评论 :: 226万 阅读
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

怎么让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   sunny123456  阅读(1774)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
历史上的今天:
2021-04-21 eclipse不能自动编译生成class文件的解决办法
2021-04-21 c#中如何处理多个数据库事务同时提交 同时回滚
2021-04-21 事务提交 commit 会失败么_事务的四大特性ACID
2021-04-21 Delegate(委托与事件)
2021-04-21 eclipse2020-06创建属于自己的JSP模板(图文)
2021-04-21 eclipse没有新建web项目的解决问题
2021-04-21 Eclipse中Jsp文件出现:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
点击右上角即可分享
微信分享提示