Solve the problem that ElementUI custom CSS style does not take effect

Solve the problem that ElementUI custom CSS style does not take effect

For example, there is an input box

<el-input
        ref="mySearch"
        class="mySearch"
        size="small"
        placeholder="Please enter content"
        suffix-icon="el-icon-search"
        v-model="input1">
</el-input>

If no custom style is added, the input box will look like this

insert image description here

I hope so

insert image description here

Through the developer tools of Google Chrome, find the class name of the corresponding style.el .el-input__inner
But I found that the el-input tag in front of html was parsed into this, where mySearch was added by myself, so we can find the element of mySearch , and the sub-element class name that needs to be modified is .el-input__inner

insert image description here

insert image description here

If you select child elements through CSS selectors, you cannot apply it to the elements inside the child elements. The following uses stylus syntax. The following is an incorrect way of writing:

<style scoped lang="stylus" rel="stylessheet/stylus">
    .mySearch .el-input__inner
        border-radius 20px
</style>

How to make it work

Solution 1: You need to add a /deep/ in the middle to

<style scoped lang="stylus" rel="stylessheet/stylus">
    .mySearch /deep/ .el-input__inner
        border-radius 20px
</style>

Solution 2: Remove scoped . This method can achieve the desired effect but is not recommended!

In general, the reason why it does not work is that this scope causes the scope to not work on the internal sub-components. The final solution to the problem is to add /deep/ to make it work on the sub-components.

This is the end of this article about the solution to the problem of ElementUI custom CSS style not taking effect. For more relevant content about ElementUI style not taking effect, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Detailed steps to deploy lnmp under Docker

>>:  How to remove the underline of a hyperlink using three simple examples

Recommend

New usage of watch and watchEffect in Vue 3

Table of contents 1. New usage of watch 1.1. Watc...

A brief discussion on the specific use of viewport in mobile terminals

Table of contents 1. Basic Concepts 1.1 Two kinds...

jQuery custom magnifying glass effect

This article example shares the specific code of ...

Several ways to use v-bind binding with Class and Style in Vue

Adding/removing classes to elements is a very com...

Implementation method of Mysql tree recursive query

Preface For tree-structured data in the database,...

Summary of Several Methods for Implementing Vertical Centering with CSS

In the front-end layout process, it is relatively...

Recommend some useful learning materials for newbies in web design

Many people also asked me what books I read when ...

HTML table only displays the outer border of the table

I would like to ask a question. In Dreamweaver, I...

Linux uses NetworkManager to randomly generate your MAC address

Nowadays, whether you are on the sofa at home or ...

Interpretation of syslogd and syslog.conf files under Linux

1: Introduction to syslog.conf For different type...

The use and difference between JavaScript pseudo-array and array

Pseudo-arrays and arrays In JavaScript, except fo...

Docker uses a single image to map to multiple ports

need: The official website's resource server ...

Nginx implements dynamic and static separation example explanation

In order to speed up the parsing of the website, ...