Summary of the use of CSS scope (style splitting)

Summary of the use of CSS scope (style splitting)

1. Use of CSS scope (style division)

In Vue, make the CSS style take effect only in the current component: scoped attribute is a new attribute in HTML5. It is a Boolean attribute. If this attribute is used, the style is only applied to the parent element and its child elements of the style element.

insert image description here

2. Implementation principle of scoped

The effect of scoped attributes in Vue is mainly achieved through PostCSS translation. The following is the Vue code before translation:

  <style scoped>
    .test {
      color: blue;
    }
  </style>
  
  <template>
    <div class="test">Hi world</div>
  </template>

After translation:

  <style>
    .test[data-v-5559930f] {
      color: blue;
    }
  </style>
  
  <template>
    <div class="test" data-v-5559930f>Hi world</div>
  </template>

PostCSS adds a unique dynamic property to all DOM in a component, and then adds an additional corresponding attribute selector to the CSS selector to select the DOM in the component. This approach makes the style only work on the DOM containing the property <component internal DOM>.

3. Scoped penetration method

In many projects, when referencing a third-party component, you need to modify the style of the third-party component locally in the component, but you don't want to remove the scoped attribute to cause style pollution between components. At this time, some special methods are needed to penetrate the scoped.

Method 1: Use >>> to penetrate the scoped attribute and modify the styles of other third-party components.

insert image description here

Method 2: Use two style tags, one with a scoped attribute and one without scoped attribute, to modify the style of third-party components.

insert image description here

Method 3: Use sass or less styles to penetrate /deep/

insert image description here

Method 4: Distinguish by adding id or class at the outermost layer.

This is the end of this article about CSS scope (style splitting). For more relevant CSS scope content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  How to quickly query 10 million records in Mysql

>>:  Introduction to setting up Tomcat to start automatically on Linux system

Recommend

MySQL 8.0.11 Community Green Edition Installation Steps Diagram for Windows

In this tutorial, we use the latest MySQL communi...

20 excellent foreign web page color matching cases sharing

This article collects 20 excellent web page color ...

Will mysql's in invalidate the index?

Will mysql's IN invalidate the index? Won'...

Mybatis statistics of the execution time of each SQL statement

background I am often asked about database transa...

You may need a large-screen digital scrolling effect like this

The large-screen digital scrolling effect comes f...

Summary of commonly used SQL in MySQL operation tables

1. View the types of fields in the table describe...

Vue implements multiple selections in the bottom pop-up window

This article example shares the specific code of ...

Example of implementing login effect with vue ElementUI's from form

Table of contents 1. Build basic styles through E...

Solution to nginx hiding version number and WEB server information

Nginx can not only hide version information, but ...

Vue plugin error: Vue.js is detected on this page. Problem solved

Vue plugin reports an error: Vue.js is detected o...

Completely uninstall MySQL database in Windows system to reinstall MySQL

1. In the control panel, uninstall all components...

How to implement Ajax concurrent request control based on JS

Table of contents Preface Ajax serial and paralle...

Basic JSON Operation Guide in MySQL 5.7

Preface Because of project needs, the storage fie...