Vue ElementUI实现表格内文字居中

第一种:在el-table中加上 header-cell-stylecell-style样式
<el-table :data="list"
:header-cell-style="{ textAlign: 'center' }"
:cell-style="{ textAlign: 'center' }"
></el-table>
第二种:在style中加上 CSS样式
<style lang="scss" scoped>
::v-deep .el-table th > .cell {
    
    
  text-align: center;
}

::v-deep .el-table .cell {
    
    
  text-align: center;
}
</style>

猜你喜欢

转载自blog.csdn.net/sunshineTing2/article/details/128833919