[css] 样式穿透 >>> /deep/ ::v-deep

有些样式无法修改,需要借助于深层样式

>>>    别名  /deep/   ::v-deep

给父元素添加类名借助于深层样式

 

>>>只可使用于css

<style>
.box >>> .el-input__inner{ padding:0 }
</style>

如果有scoped不使用第三方css扩展语言,可以使用/deep/

<style scoped >
.box /deep/ .el-input__inner{ padding:0 }
</style>

使用scss或者其他第三方css扩展语言和scoped ,修改element ui样式需要使用 ::v-deep

<style scoped lang='scss'>
.box ::v-deep .el-input__inner{ padding:0 } </style>

 

posted @ 2021-04-21 23:00  coffeemil  阅读(714)  评论(0编辑  收藏  举报