vue3 css的样式如果background没有,如何覆盖有background的样式
在Vue 3中,如果你想要覆盖一个有background
样式的元素,你可以使用更具体的CSS选择器来提升你的样式规则的优先级,或者使用!important
规则。
.some-class {
background: url('path/to/image.jpg') no-repeat center center;
}
你可以通过提供一个更具体的选择器来覆盖它
.some-other-class .some-class {
background: none;
}