修改<el-input>中的.el-input__inner中的背景色,但是总是不生效,使用了scoped,如何解决
时间: 2024-03-25 09:39:40 浏览: 92
如果你使用了 scoped 样式,那么 `.el-input__inner` 的样式可能会被作用于 `el-input` 组件之外的元素,从而导致样式不生效。这是因为 scoped 样式会在编译时自动为选择器添加一个唯一的前缀来避免样式污染,但是 `.el-input__inner` 的样式可能会被子组件渲染到其他地方,从而导致选择器无法匹配。
解决 scoped 样式无法作用于子组件的问题,可以通过以下两种方式实现:
1. 使用 `/deep/` 或 `>>>` 选择器
你可以使用 `/deep/` 或 `>>>` 选择器来强制作用于子组件中。例如:
```css
<style scoped>
.parent-class /deep/ .el-input__inner {
background-color: #f0f0f0;
}
</style>
<template>
<div class="parent-class">
<el-input></el-input>
</div>
</template>
```
或者:
```css
<style scoped>
.parent-class >>> .el-input__inner {
background-color: #f0f0f0;
}
</style>
<template>
<div class="parent-class">
<el-input></el-input>
</div>
</template>
```
这样就可以强制作用于子组件中,从而修改样式。
2. 使用 deep 样式
你可以使用 `::v-deep` 或 `::deep` 伪元素来避免 scoped 样式的限制,从而修改样式。例如:
```css
<style scoped>
.parent-class ::v-deep .el-input__inner {
background-color: #f0f0f0;
}
</style>
<template>
<div class="parent-class">
<el-input></el-input>
</div>
</template>
```
或者:
```css
<style scoped>
.parent-class ::deep .el-input__inner {
background-color: #f0f0f0;
}
</style>
<template>
<div class="parent-class">
<el-input></el-input>
</div>
</template>
```
这样就可以避免 scoped 样式的限制,从而修改样式了。
阅读全文