el-table的样式覆盖

关于更改el-table样式

更改后的样式为

在这里插入图片描述

项目实现代码

在这里插入图片描述
在这里插入图片描述

因为要覆盖的是第三方element的样式,所以不能用scoped,如果当前文件不止表格的样式,可以建立一个css文件来进行引入,由于希望简单明了,本次该样式没有用到sass/less预处理器。

<style>
.mineral-table {
  position: absolute;
  right: 20px;
  top: 100px;
  width: 300px;
  background-color: rgb(9, 8, 24);
}

/* 修改表头内容 */
.mineral-table .el-table__header-wrapper th {
  background-color: rgb(9, 8, 24);
  border-bottom: 1px solid #696969;
  color: #fff;
}

/* 修改表格里内容 */
.mineral-table .el-table__body-wrapper tr td {
  background-color: rgb(9, 8, 24);
  border-bottom: 1px solid #696969;
  color: #fff;
}

/* 选中的颜色 */

.mineral-table tbody tr.current-row > td {
  background-color: #a0cfff;
}

/* 划过的颜色 */
.mineral-table tbody tr:hover > td {
  background-color: #231994 !important;
}
</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值