vue scoped 解决样式不生效问题
对于添加样式不能影响子组件样式的情况使用:>>><style scoped>.sti-inline{display: inline;}.sti-searchform form .sti-reset-margin{margin-bottom:0px;}.sti-searchform{line-height: 1;}.sti-searchform.sea
·
对于添加样式不能影响子组件样式的情况使用:>>>
<style scoped>
.sti-inline{
display: inline;
}
.sti-searchform form .sti-reset-margin{
margin-bottom:0px;
}
.sti-searchform{
line-height: 1;
}
.sti-searchform.searchform{
margin-bottom: 10px;
}
.phone >>> .el-form-item__label, label{
padding-left: 0 !important;
padding-right: 0 !important;
width: 115px !important;
}
.phone >>> .el-form-item__content{
margin-left: 115px !important;
}
.ant-tabs /deep/ .ant-tabs-left-content {
padding-left: 12px;
}
</style>
说明参考:
https://vue-loader.vuejs.org/zh/guide/scoped-css.html#子组件的根元素
更多推荐
已为社区贡献4条内容
所有评论(0)