Home Web Front-end CSS Tutorial Solution to attribute priority problem in CSS writing

Solution to attribute priority problem in CSS writing

Mar 13, 2017 pm 05:40 PM

This article mainly introduces the issue of attribute priority in CSS writing, focusing on the hierarchical calculation and inheritance relationship between elements. Friends in need can refer to it

When you add a style to When you find that it doesn't work on an element, you have a priority problem. So how should we deal with CSS priority issues? Below I have summarized some common rules for solving CSS priority issues.

Style distance
We can add specified styles to elements by using external styles, internal styles, inline styles, etc. The priority at this time is:

External style This should be easier to understand, which means that the closer the style is to the element, the greater the priority. For example:

<style type="text/css">   
  p{color:blue;} //内部样式   
</style>   
<link rel="stylesheet" type="text/css" href="mystyle.css"/> //外部样式(color:green)   
<p style="color:red">my color</p>//内联样式
Copy after login


The priority displayed at this time is red > blue > green. So my color appears as red.

Special calculation method
Assume that there is the following code:

<style type="text/css">   
  p p.classSelector {color: blue}   
  #idselector p {color: red}   
</style>   
<p id="idSelector">   
  <p class="classSelector">my color</p>   
</p>
Copy after login


We face the following css, how What about determining priorities?

<style type="text/css">   
  p p.classSelector {color: blue}   
  #idselector p {color: red}   
</style>
Copy after login


Here is a special calculation method:

elements, pseudo elements: 1 – (0,0,0,1)
Class, pseudoclass, attributes: 1 – (0,0,1,0)
ID: 1 – (0,1,0,0)
Inline style: 1 – ( 1,0,0,0)
The attributes here refer to:
Solution to attribute priority problem in CSS writing

The effect is as follows:
Solution to attribute priority problem in CSS writing

The priority is from top to bottom As for how to calculate, we also give an example:

p: 1 element – ​​(0,0,0,1)
p: 1 element – ​​(0,0,0,1 )
#idSelector: 1 ID – (0,1,0,0)
p#idSelector: 1 element, 1 ID – (0,1,0,1)
p#idSelector p: 2 elements, 1 ID – (0,1,0,2)
p#idSelector p.classSelector: 2 elements, 1 class, 1 ID – (0,1,1,2)
So now let’s look at the above example again:

p p.classSelector {color: blue} - (0,0,0,1) + (0,0,0,1) + (0,0,1,0) = (0,0,1,2)   
#idselector p {color: red} - (0,1,0,0) + (0,0,0,1) = (0,1,0,1)
Copy after login


Since the priority is (0,1,0,1) > (0,0,1, 2), so we know that the last displayed color is red.

Inheritance
Inheritance is a relatively easy-to-understand concept, that is, child elements will inherit the style of the parent element. For example:

<p style="color:red">   
  <p>my color</p>   
</p>
Copy after login


The span in the above example will inherit the style of the parent element p. But not all properties will use inheritance by default, such as the margin and padding properties. For example:

<p style="margin:10px;padding:10px">   
  <p>my color</p>   
</p>
Copy after login


At this time, element p will not inherit the margin and padding styles of parent element p unless you do this:

<p style="margin:10px;padding:10px">   
  <p style="margin:inherit;padding:inherit">my color</p>   
</p>
Copy after login


Summary
1. First find all the styles that act on the elements. (Do not ignore styles from inheritance)
2. Calculate the distance of the style. The closer the distance, the greater the priority.
3. Use special calculation methods to determine styles within the same distance.
4. If the calculated results are the same, the later declared style overrides the previously declared style.
5. If !important is set in a style, that style will prevail regardless of its priority. (Unless absolutely necessary, it is strongly not recommended to use this method, because it is undoubtedly a usage that does not conform to the CSS idea)

The above is the detailed content of Solution to attribute priority problem in CSS writing. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1670
14
PHP Tutorial
1274
29
C# Tutorial
1256
24
A Comparison of Static Form Providers A Comparison of Static Form Providers Apr 16, 2025 am 11:20 AM

Let’s attempt to coin a term here: "Static Form Provider." You bring your HTML

A Proof of Concept for Making Sass Faster A Proof of Concept for Making Sass Faster Apr 16, 2025 am 10:38 AM

At the start of a new project, Sass compilation happens in the blink of an eye. This feels great, especially when it’s paired with Browsersync, which reloads

Weekly Platform News: HTML Loading Attribute, the Main ARIA Specifications, and Moving from iFrame to Shadow DOM Weekly Platform News: HTML Loading Attribute, the Main ARIA Specifications, and Moving from iFrame to Shadow DOM Apr 17, 2025 am 10:55 AM

In this week&#039;s roundup of platform news, Chrome introduces a new attribute for loading, accessibility specifications for web developers, and the BBC moves

Some Hands-On with the HTML Dialog Element Some Hands-On with the HTML Dialog Element Apr 16, 2025 am 11:33 AM

This is me looking at the HTML element for the first time. I&#039;ve been aware of it for a while, but haven&#039;t taken it for a spin yet. It has some pretty cool and

Paperform Paperform Apr 16, 2025 am 11:24 AM

Buy or build is a classic debate in technology. Building things yourself might feel less expensive because there is no line item on your credit card bill, but

Where should 'Subscribe to Podcast' link to? Where should 'Subscribe to Podcast' link to? Apr 16, 2025 pm 12:04 PM

For a while, iTunes was the big dog in podcasting, so if you linked "Subscribe to Podcast" to like:

Weekly Platform News: Text Spacing Bookmarklet, Top-Level Await, New AMP Loading Indicator Weekly Platform News: Text Spacing Bookmarklet, Top-Level Await, New AMP Loading Indicator Apr 17, 2025 am 11:26 AM

In this week&#039;s roundup, a handy bookmarklet for inspecting typography, using await to tinker with how JavaScript modules import one another, plus Facebook&#039;s

Options for Hosting Your Own Non-JavaScript-Based Analytics Options for Hosting Your Own Non-JavaScript-Based Analytics Apr 15, 2025 am 11:09 AM

There are loads of analytics platforms to help you track visitor and usage data on your sites. Perhaps most notably Google Analytics, which is widely used

See all articles