使用 Element UI <el-table>時,总会自带外边框,写了好多css样式始终不能去除,最终发现是th与td所带的样式。
代码如下文章来源:https://www.toymoban.com/news/detail-698672.html
el-table 加 class="customer-no-border-table"
<el-table
:data="personnelList"
style="width: 100%"
class="customer-no-border-table"
@selection-change="handleSelectionChange">
<el-table-column type="selection" width="55"></el-table-column>
</el-table>
CSS样式
/*去掉表格单元格边框*/
.customer-no-border-table th{
border:none;
}
.customer-no-border-table td,.customer-no-border-table th.is-leaf {
border:none;
}
/*表格最外边框*/
.customer-no-border-table .el-table--border, .el-table--group{
border: none;
}
/*头部边框*/
.customer-no-border-table thead tr th.is-leaf{
border: 0px solid #EBEEF5;
border-right: none;
}
.customer-no-border-table thead tr th:nth-last-of-type(2){
border-right: 0px solid #EBEEF5;
}
/*表格最外层边框-底部边框*/
.customer-no-border-table .el-table--border::after,.customer-no-border-table .el-table--group::after{
width: 0;
}
.customer-no-border-table::before{
width: 0;
}
.customer-no-border-table .el-table__fixed-right::before,.el-table__fixed::before{
width: 0;
}
.customer-no-border-table .el-table__header tr th{
background: #fff;
color: #333333 ;
padding: 3px ;
fontWeight: 550 ;
height: 36px ;
border: 0px;
font-size: 15px;
}
修改完后**********************边框已经去除
文章来源地址https://www.toymoban.com/news/detail-698672.html
到了这里,关于Element UI <el-table>去除外边框的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!