Home Web Front-end CSS Tutorial How to understand CSS cascading styles

How to understand CSS cascading styles

Feb 28, 2019 am 11:40 AM

CSS cascading is a feature of browser conflict handling. Among CSS cascading style conflicts, there are reference mode conflicts, inheritance mode conflicts, and specified style conflicts. When there is a conflict between the specified style and inherited style debugging, the specified style conflict shall prevail.

CSS has three major features: inheritance, priority and cascading. What I will introduce today is the cascading nature of the three major features of CSS, which has certain reference value. I hope it will be helpful to everyone

How to understand CSS cascading styles

[Recommended course: CSS tutorial

CSS cascading

CSS cascading is browser processing A feature of conflict is that if multiple selectors are set in an attribute, only one selector will take effect at this time, and the other selectors will be removed by the cascading part.

Conditions for cascading

(1) The elements are the same

(2) The attributes are the same

(3) The priorities are the same

Cascading style conflicts

(1) Reference method conflict

CSS reference methods include inline styles, Inline style, imported style, link style, the order of priority of the four is inline style > inline style > imported style > link style

Example:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" src="style.css">
<style>
	body{
		background-color: pink;
	}
</style>
<body>
	<h1 style="background-color: red">优先级</h1>
</body>
</html>
Copy after login

Effect The picture is as follows:

How to understand CSS cascading styles

(2) Inheritance mode conflict

There are some properties in CSS when setting them to yourself The attribute value will be inherited by its descendants. For example, the color, font size, font shape, alignment, etc. set in CSS will be inherited. However, inheritance will not occur regarding attributes such as box, positioning, layout, etc.

The conflict of inheritance methods is to display the parent element closest to itself instead of all parent elements

Example:

<style type="text/css">
		body{
			color: pink;
		}
		#father{
			color: red;
		}
		#grandfather{
			color: blue;
		}
	</style>
</head>
<body>
	<div id="grandfather">
		<div id="father">
			<div>
				<h1>继承冲突</h1>
			</div>
		</div>
	</div>
Copy after login

The rendering is as follows:

How to understand CSS cascading styles

(3) Specify style conflict

Sometimes we specify Conflicts may occur due to different weights. It should also be noted here that only when the weights are the same, the "last come first" principle will be used

<style type="text/css">
		body{
			color:black;
		}
		.father{
			color:yellow;
		}
		#son{
			color:green;
		}
	</style>
</head>
<body>
	<div id="son" class="father">
		<h1>继承冲突</h1>
	</div>
</body>
Copy after login

The effect diagram is as follows:

Image 080.png

##Due to the weight of the id selector is 100, and the weight of the element selector is 1, so the final font color displayed is the attribute set in the id selector

Note: When the inherited style and the specified style conflict at the same time on the page, specify Style takes precedence. When the property is set! The priority can be changed when important, and the style can be overridden on any other style.

Summary: The above is the entire content of this article, I hope it will be helpful to everyone.

The above is the detailed content of How to understand CSS cascading styles. 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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 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)

Working With GraphQL Caching Working With GraphQL Caching Mar 19, 2025 am 09:36 AM

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

Making Your First Custom Svelte Transition Making Your First Custom Svelte Transition Mar 15, 2025 am 11:08 AM

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

Show, Don't Tell Show, Don't Tell Mar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

Building an Ethereum app using Redwood.js and Fauna Building an Ethereum app using Redwood.js and Fauna Mar 28, 2025 am 09:18 AM

With the recent climb of Bitcoin’s price over 20k $USD, and to it recently breaking 30k, I thought it’s worth taking a deep dive back into creating Ethereum

How do you use CSS to create text effects, such as text shadows and gradients? How do you use CSS to create text effects, such as text shadows and gradients? Mar 14, 2025 am 11:10 AM

The article discusses using CSS for text effects like shadows and gradients, optimizing them for performance, and enhancing user experience. It also lists resources for beginners.(159 characters)

What the Heck Are npm Commands? What the Heck Are npm Commands? Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

Creating Your Own Bragdoc With Eleventy Creating Your Own Bragdoc With Eleventy Mar 18, 2025 am 11:23 AM

No matter what stage you’re at as a developer, the tasks we complete—whether big or small—make a huge impact in our personal and professional growth.

Let's use (X, X, X, X) for talking about specificity Let's use (X, X, X, X) for talking about specificity Mar 24, 2025 am 10:37 AM

I was just chatting with Eric Meyer the other day and I remembered an Eric Meyer story from my formative years. I wrote a blog post about CSS specificity, and

See all articles