`/* 覆盖Element UI的默认表格线样式,并设置行高 / .no-border-table .el-table__body-wrapper tbody tr { height: 37px; / 设置行高 / line-height: 37px; / 可选:设置行内文字垂直居中,如果行高和字体大小匹配则不需要 */ }
/* 还需要处理表格头和表格体的边框样式(如果不显示表格线的话) */ .no-border-table .el-table__header-wrapper th, .no-border-table .el-table__body-wrapper td { border-right: none; border-bottom: none; text-align: left; }
/* 处理第一列的左边框(如果需要的话) */ .no-border-table .el-table__header-wrapper th:first-child, .no-border-table .el-table__body-wrapper td:first-child { border-left: none; }`