element-ui中table 去掉表头、去掉边框线、去掉鼠标悬停背景颜色
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
首先去掉表头
**: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
}
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)