element表格固定宽高,并且超出部分成省略号和hover全称

<el-table>中添加

:row-style="{height:'40px'}"
:cell-style="{padding:'0px'}"
:header-cell-style="{background:'#EEEEEE',color:'#4d4d4d'}"

<el-table-column>中添加

show-overflow-tooltip

确定最大外层,固定高度

.group_details .el-table__header tr,
.el-table__header th {
  padding: 0;
  height: 40px;
}
.group_details .el-table__body tr, .el-table__body td {
  padding: 0;
  height: 40px;
}
.hotel_name_title {
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  position: relative;
}

 

相关文章:

  • 2022-12-23
  • 2022-01-29
  • 2021-07-21
  • 2022-01-02
  • 2022-12-23
  • 2021-08-07
  • 2021-12-27
  • 2021-12-23
猜你喜欢
  • 2021-06-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-19
  • 2022-01-28
相关资源
相似解决方案