element设置表格表头行高样式

element-ui 设置表头地址:https://element.eleme.io/#/zh-CN/component/table#table-attributes

  • max-height Table 的最大高度。合法的值为数字或者单位为 px 的高度。
  • header-row-style 表头行的 style
  • header-cell-style 表头单元格的 style
  • row-style 行的 style
  • cell-style 单元格的 style
1
2
3
4
5
6
7
8
9
10
<el-table
:max-height="196"
:header-row-style="{height: '46px'}"
:header-cell-style="{height: '46px'}"
:row-style="{height: '50px'}"
:cell-style="{height: '50px'}"
stripe
>
...
</el-table>