element的el-table表格标题用css自定义是否必填添加伪类红色 *
效果图如下👇
el-table组件的html部分
css部分
/deep/.el-table__header-wrapper{
.el-table__header{
.has-gutter tr .el-table__cell:nth-of-type(3) .cell:before{
content: '*';
color:red
}
.has-gutter tr .el-table__cell:nth-of-type(4) .cell:before{
content: '*';
color:red
}
}
}