el-table添加border边框线不显示
1.固定了表格的高度height=“250” 把高度去掉。注意要把表单的高度去掉不然会有表单对不齐。
·
el-table添加border属性 使用作用域插槽 会不现实左边的边框线,或者右边的边框线
总结问题
1.固定了表格的高度 height=“250” 把高度去掉
<el-table
:data=“orderTableData”
style=“width: 100%; margin-top: 20px”
border
height=“250”
Checkbox
@selection-change=“tableChange”
>
//表头
thead th:not(.is-hidden):last-child {
border-left: 1px solid #ebeef5;
}
//表单
.el-table__row {
td:not(.is-hidden):last-child {
border-left: 1px solid #e4e7ec;
}
这俩属性基本能解决
注意要把表单的高度去掉不然会有表单对不齐
更多推荐
已为社区贡献1条内容
所有评论(0)