在如果你希望 scoped 樣式中的一個選擇器能夠作用得“更深”,例如影響子組件,但由于scoped屬性的樣式隔離,可能需要去除scoped或是另起一個style。這些做法都會帶來副作用(組件樣式污染、不夠優(yōu)雅),樣式穿透在css預(yù)處理器中使用才生效。
less使用?/deep/
.content /deep/ .el-button {
????height: 60px;
}
scss使用::v-deep
.content ::v-deep .el-button {
????height: 60px;
}
stylus使用>>>
外層 >>> .custon-components{
????height: 60px;
}