Vue——elementUI的table背景透明
需求:拿到别人用elementUI创建table,要把背景改成透明的。(搞了很久都不对网上很多人也说了都没弄好,所以纪律一下)
·
需求:拿到别人用elementUI创建table,要把背景改成透明的。(搞了很久都不对网上很多人也说了都没弄好,所以纪律一下)
.el-table th{
color: #ffffff; /* 字体颜色 */
font-size: 16px;
background-color: transparent !important;/* 背景透明 */
border: 0;
height: 30px;
line-height: 30px;
}
.el-table tr, .el-table td {
color: #e5dada;
font-size: 12px;
background-color: transparent !important;/* 背景透明 */
border: 0;
height: 30px;
line-height: 30px;
}
/* 上面两个背景色透明才能让table的背景透明少一个都不行 */
更多推荐
已为社区贡献7条内容
所有评论(0)