当前位置:   article > 正文

el-table的样式覆盖_.el-table__header th 改变字体被覆盖

.el-table__header th 改变字体被覆盖

关于更改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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/114470?site
推荐阅读
相关标签
  

闽ICP备14008679号