Web page CSS priority is explained in detail for you

Web page CSS priority is explained in detail for you

Before talking about CSS priority, we need to understand what CSS is and what CSS is used for.

First, let us give a brief explanation of CSS: CSS is the abbreviation of Cascading Style Sheets. Its specifications represent a unique development stage in the history of the Internet. Nowadays, for those who are engaged in web page production, there should be few who have not heard of CSS, because we often need to use it in the process of making web pages.

Secondly: We can use CSS to set a rich and easy-to-modify appearance for the document to reduce the workload of web page makers, thereby reducing the cost of production and subsequent maintenance.

In fact, it is completely redundant to talk about what CSS is and what its functions are now. I believe that friends who are engaged in web page production have already come into contact with it to some extent.

Now, let's get back to today's topic:

1. What is CSS priority?

The so-called CSS priority refers to the order in which CSS styles are parsed in the browser.

2. CSS priority rules

Since styles have priorities, there will be a rule to determine the priority, and this "rule" is the focus of this article.

Specificity in a style sheet describes the relative weight of different rules. The basic rules are:

  1. Counts the number of ID attributes in the selector.
  2. Count the number of CLASS attributes in the selector.
  3. Counts the number of HTML tag names in the selector.

Finally, write the three numbers in the correct order without spaces or commas to get a three-digit number (CSS 2.1 uses four digits). (Note that you need to convert the number into a larger number that ends with three digits). The final list of numbers corresponding to the selectors makes it easy to determine which higher numbered features override lower numbered ones.

For example:

  1. For each ID selector (#someid), add 0,1,0,0.
  2. Add 0,0,1,0 to each class selector (.someclass), each attribute selector (such as [attr=value], etc.), and each pseudo-class (such as :hover, etc.).
  3. For each element or pseudo-element (:firstchild), add 0,0,0,1.
  4. Other selectors include the global selector *, plus 0,0,0,0. It is equivalent to not adding it, but this is also a kind of specificity, which will be explained later.

3. Selector list for feature classification

The following is a list of selectors categorized by characteristics:

Selector Characteristic Value
h1 {color:blue;} 1
p em {color:purple;} 2
.apple {color:red;} 10
p.bright {color:yellow;} 11
p.bright em.dark {color:brown;} twenty two
#id316 {color:yellow} 100

Just looking at the table above, it seems difficult to understand. Here is another table:

Selector Characteristic Value
h1 {color:blue;} 1
p em {color:purple;} 1+1=2
.apple {color:red;} 10
p.bright {color:yellow;} 1+10=11
p.bright em.dark {color:brown;} 1+10+1+10=22
#id316 {color:yellow} 100

From the above, we can easily see that the weight of HTML tags is 1, the weight of CLASS is 10, the weight of ID is 100, and the weight of inheritance is 0 (which will be discussed later).

According to these rules, the number strings are added bit by bit to get the final weight, and then compared bit by bit from left to right when making comparisons.

The priority issue is actually a conflict resolution issue. When the same element (content) is selected by a CSS selector, different CSS rules must be selected according to the priority. There are actually many issues involved.

At this point, we have to talk about the inheritance of CSS.

Multiple CSS style files are loaded in the web page, one of which is the style file that comes with the Ext library, which defines some styles for all tags, causing the original web page to display incorrectly. By finding the corresponding style, the correct style is reset. Add the new style to the body tag, but two styles appear and the Ext style is still valid. Finally, I found that I didn't add * when setting the new style, which made it only effective for the body tag but not for the sub-tags. The following is the modified style

Copy code
The code is as follows:

.diy,
.diy *{
box-sizing: content-box;
-moz-box-sizing : content-box;
-webkit-box-sizing: content-box;
}

When multiple styles are defined for a tag and there is a conflict between the styles, the priority is "Style defined for ID" > "Style defined for class" > "Style defined for tag type". For example, the following styles

Copy code
The code is as follows:

div{
border:2px solid #0000FF;
}
.powerHeader{
border:2px solid #00ff00;
}
#navigation{
border:2px solid #ff0000;
}

In the tag <div id="navigation" class="powerHeader">, #navigation is applied first, and when #navigation does not exist, the .powerHeader style is applied, and finally the div style.
At the same time, when there is a conflict between defining multiple tag classes using a single link or style, the class defined last will be applied.
Understanding CSS style priority can avoid many style conflict problems in web page development.

<<:  Processing ideas for decrypting WeChat applet packages on PC in node.js

>>:  Three common methods for HTML pages to automatically jump after 3 seconds

Recommend

How to implement an array lazy evaluation library in JavaScript

Table of contents Overview How to achieve it Spec...

VMWare15 installs Mac OS system (graphic tutorial)

Installation Environment WIN10 VMware Workstation...

MySQL tutorial thoroughly understands stored procedures

Table of contents 1. Concepts related to stored p...

How to implement a binary search tree using JavaScript

One of the most commonly used and discussed data ...

Detailed summary of mysql sql statements to create tables

mysql create table sql statement Common SQL state...

How to upload the jar package to nexus via the web page

When using Maven to manage projects, how to uploa...

Detailed explanation of pid and socket in MySQL

Table of contents 1. Introduction to pid-file 2.S...

HTML page common style (recommended)

As shown below: XML/HTML CodeCopy content to clip...

Summary of web designers' experience and skills in learning web design

As the company's influence grows and its prod...

10 skills that make front-end developers worth millions

The skills that front-end developers need to mast...

JS interview question: Can forEach jump out of the loop?

When I was asked this question, I was ignorant an...

MySQL 4 common master-slave replication architectures

Table of contents One master and multiple slaves ...

A brief talk about Rx responsive programming

Table of contents 1. Observable 2. Higher-order f...

15 JavaScript functions worth collecting

Table of contents 1. Reverse the numbers 2. Get t...