笔记-ElementUI中修改el-input__inner样式不生效问题
在Vue中,style要求scoped,只修改本组件下的样式,使用>>>和/deep/来选择子组件记录一下自己在需要table中使用input,而不出现边框,显然是border: 0;就可以的使用了各种.el-input .el-input__inner{ border:0;} 不生效…就是定位不到el-input__inner中看了资料才知道,用>>>和/de
·
在Vue中,style要求scoped,只修改本组件下的样式,使用>>>
和/deep/
来选择子组件
记录一下自己在需要table中使用input,而不出现边框,显然是border: 0;
就可以的
使用了各种
.el-input .el-input__inner{ border:0;}
不生效
…
就是定位不到el-input__inner中
看了资料才知道,用>>>
和/deep/
我用/deep/.el-input__inner{border:0;}
就解决了
更多推荐
已为社区贡献4条内容
所有评论(0)