赞
踩
el-table会自带下边框,去除所有的边框
- //去除table的每一条数据的下边框
- .el-table td {
- border-bottom: none;
- }
- //去除表格的最下面一行的边框
- .tableStyle::before{
- width: 0;
- }
- //设置表的外边框
- .el-table{
- border: 1px solid #ccc;
- }
如果要去除表头的下边框():
.el-table th.is-leaf {
border-bottom: none;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。