1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > element-ui中table 去掉表头 去掉边框线 去掉鼠标悬停背景颜色

element-ui中table 去掉表头 去掉边框线 去掉鼠标悬停背景颜色

时间:2023-01-27 09:36:09

相关推荐

element-ui中table 去掉表头 去掉边框线 去掉鼠标悬停背景颜色

首先去掉表头

**:show-header=“false”**就可以去掉表头

<el-table:data="dataList"border:show-header="false"v-loading="dataListLoading"style="width: 100%;"></el-table>

去掉边框

先去掉border属性

然后增加css

<el-table:data="dataList"class="customer-no-border-table":show-header="false"v-loading="dataListLoading"style="width: 100%;"></el-table>

/*去掉表格单元格边框*/.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;}/*去掉鼠标悬停背景颜色*/.el-table tbody tr:hover>td {background-color:#ffffff!important}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。