Solution to elementui's el-popover style modification not taking effect

Solution to elementui's el-popover style modification not taking effect

When using element-ui, there is a commonly used component, that is el-popover, but the style and usage in the element-ui official document are relatively limited, and the style needs to be changed when using it

I used el-popover in my project, but I have not been able to modify the style. Let's take a look at what the official documentation says.

insert image description here

Add a class name, string type, ok, add one

<el-popover
    placement="right"
    width="400"
    trigger="hover"
    popper-class="my-popover"
    >

To set the style

<style lang="scss" scoped>
	.my-popover{
		padding:20px;
	}
</style>

insert image description here

The result is that the setting was not successful!
Is it because of scope? Try again without scope!

<style>
my-popover{
    padding:10px 30px;
}
</style>

insert image description here

Still no effect! ! !
After crazy experiments and searching online!
The final writing method is this: .el-popover.my-popover, with the prefix .el-popover, otherwise it will not take effect. And can not be scoped

<style>
.el-popover.my-popover{
    padding:10px 30px;
}
</style>

insert image description here

Modification successful!

This is the end of this article about the solution to the problem that the modified style of elementui's el-popover does not take effect. For more related content about el-popover style not taking effect, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Example of using Element Popover

<<:  How to set up swap partition SWAP in Linux 7.7

>>:  Complete steps to install MySQL 8.0.x on Linux

Recommend

MySQL 5.7.18 installation and configuration tutorial under Windows

This article shares the installation and configur...

20 CSS coding tips to make you more efficient (sorted)

In this article, we would like to share with you ...

Basic operations of mysql learning notes table

Create Table create table table name create table...

Detailed explanation of Kubernetes pod orchestration and lifecycle

Table of contents K8S Master Basic Architecture P...

Implement QR code scanning function through Vue

hint This plug-in can only be accessed under the ...

Solution to overflow:hidden failure in CSS

Cause of failure Today, when I was writing a caro...

Details of using vue activated in child components

Page: base: <template> <div class="...

VSCode configuration Git method steps

Git is integrated in vscode, and many operations ...

Introduction to MySQL statement comments

MySQL supports three types of comments: 1. From t...

JavaScript's unreliable undefined

undefined In JavaScript, if we want to determine ...

Discussion on the Issues of Image Button Submission and Form Repeated Submission

In many cases, in order to beautify the form, the ...

MySQL database monitoring software lepus usage problems and solutions

When using lepus3.7 to monitor the MySQL database...