首页 前端知识 前端vue-改造el-table,表头,表格(边框,背景色)

前端vue-改造el-table,表头,表格(边框,背景色)

2024-05-30 10:05:39 前端知识 前端哥 549 673 我要收藏

项目需求,表格只有最外面有边框,里面无分割线,且表头和表身的颜色不同

CSS代码如下

/* 表格内背景颜色 */

.tableMap ::v-deep .el-table th {

  //background-color: transparent !important;

  background-color: rgba(137, 42, 42, 0.5);

  border: none !important;

  //表格字体颜色

  color: #ffffff;

}

/* 表格内背景颜色 */

// .tableMap ::v-deep .el-table th,

.tableMap ::v-deep .el-table tr,

.tableMap ::v-deep .el-table td {

  background-color: rgba(137, 42, 42, 0.1) !important;

  //background-color: rgba(137, 42, 42, 0.5);

  //表格字体颜色

  color: #ffffff;

}

关键点:

之前用过 >>> <<< deep,这些进行样式改进,都不行,发现得用  “表所在div名字 ::v-deep .el-table tr”  这样的格式才能更改。

额外内容:

除了在css中修改,还可以在以下代码中修改

 <el-table

                    :data="tableData"

                    :header-cell-style="{background:'rgba(104,13,14,0.7)',height:'30px',color:'#fff',border: '1px solid tan', 'text-align':'center'}"

                    :cell-style="{'text-align':'center'}"

                    stripe

                    style="width: 100%;">

转载请注明出处或者链接地址:https://www.qianduange.cn//article/10109.html
标签
评论
发布的文章

用点jquery实现的登录页面

2024-06-06 00:06:07

echarts-锥型柱状图

2024-06-06 00:06:05

echarts的使用

2024-06-06 00:06:00

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!