element-vue中el-table去除鼠标悬停背景色
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
问题:
在做项目的时候,弄了一个比较炫酷的背景,已经把el-table的背景透明了,但是鼠标移到上面一直有高亮,查了很多文章,但是都不能解决,那怎么去掉这样的效果?
一些基础知识:
tr定义行 th表示头部(表头) td表示单元格
tr不能单独存在,相当于table的属性标签,而th,td也应当放在tr中。不光是粗体,还是居中的。
tbody标签表格主体(正文)。该标签用于组合 HTML 表格的主体内容。
tbody 元素应该与 thead 和 tfoot 元素结合起来使用。
解决:
style样式中添加以下代码:
.el-table{
background-color: transparent;
color:white;
height: 500px;
}
.el-table th, .el-table tr{
// 如果要增加竖线上方加上.el-table td
border: 0;
background-color: transparent;
}
// 鼠标滑过td上作用的样式,ie6不支持:hover伪类属性,如果是ie6要写成tr.over样式
.el-table tbody tr:hover>td {
background-color:transparent!important;
}
// 如果td没有颜色,可以去掉,这里加上保险
.el-table__body tr.hover-row>td {
background-color: transparent;
}
原创文章,禁止转载
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 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)