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>//内联样式
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>
We face the following css, how What about determining priorities?
<style type="text/css"> p p.classSelector {color: blue} #idselector p {color: red} </style>
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:
The effect is as follows:
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)
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>
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>
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>
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!

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Building an inline text editor isn't trivial. The process starts by making the target element editable, handling potential SyntaxError exceptions along the way. Creating Your Editor To build this editor, you'll need to dynamically modify the content

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

This tutorial guides you through building a file upload system using Node.js, Express, and Multer. We'll cover single and multiple file uploads, and even demonstrate storing images in a MongoDB database for later retrieval. First, set up your projec


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
