vue组件中,在style设置为scoped的时候,里面在写样式对子组件是不生效的,若是想让某些样式对因此子组件都生效,能够使用 /deep/ 深度选择器。css
<-- less语法 -->
.wrap{
/deep/ .el-dialog__header {
padding: 0;
position: relative;
//没有必要写多层deep 父类有deep后子类自动也会深度选择 而且这么写在firfox里会失效
}
}复制代码