There are three types of css style sheets: inline style sheets, internal style sheets and external style sheets. The selector priority is: "Universal selector>Element selector>Class selector>Attribute selector>Pseudo-class>ID selector>Inline style".
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
What are the types of css style sheets?
According to the position where the CSS style is written (or the way it is introduced), CSS style sheets can be divided into the following three categories:
1. Inline style sheets
Inline style is to put the CSS style directly in the tag within the line of code. It is usually placed in the style attribute of the tag. Since the inline style is directly inserted into the tag, it is the most direct way. method, and it is also the most inconvenient style to modify.
Example:
<p style="background-color: #999900">行内元素,控制段落-1</p>
2. Internal style sheet
The internal style sheet is contained in the
If a web document contains multiple
Example:
<style> div { color: blue; font-size: 16px; } </style>
3. External style sheet
If the CSS style is placed in a file outside the web page document, it is called an external style. table, a CSS style sheet document represents an external style sheet.
In fact, the external style sheet is a text file with the extension .css. When you copy the CSS style code into a text file and save it as a .css file, it is an external style sheet.
In the HTML page, use the tag to introduce the file. The specific introduction code is as follows:
<link rel="styleheet" href="css文件路径">
Priority of multiple style sheets:
Inline style inline style > Internal style sheet > External style sheet External style sheet > Browser default style
The following is an explanation of selector priority and an explanation of weight It's good, so I excerpted it from the novice tutorial
Priority is determined by the browser and applied to the element by judging which attribute values are most relevant to the element. The priority is determined only by the matching rules composed of selectors.
Priority is a weight assigned to a specified CSS declaration, which is determined by the value of each selector type in the matching selector.
What is the selector priority?
The following is a list of selectors with increasing priority:
- Universal selector (*)
- Element (type ) selector
- Class selector
- Attribute selector
- Pseudo class
- ID selector
- Inline style
!important rule exceptions
When the !important rule is applied to a style declaration, the style declaration overrides any other declaration in CSS, no matter where it is in the declaration list . However, !important rules have nothing to do with priorities. Using !important is not a good practice because it changes the original cascading rules of your stylesheet, making it difficult to debug.
Some rules of thumb:
- ##Always To optimize consider using the priority of style rules to solve the problem instead of !important
- Only Use only in specific pages that need to cover the entire site or external css (such as referenced ExtJs or YUI) !important
- Never Never use in site-wide css !important
- Never Never use !important ## in your plugins
Explanation:
- 2. The weight of the ID selector is 100
- 3. The weight of the Class selector is 10
- 4. The weight of the HTML tag selector is 1
- Use the weight of the selector to calculate and compare, em displays blue, the example is as follows: https://c.runoob.com/codedemo/3048
CSS priority rule:
- A Each selector has a weight, the greater the weight, the priority;
- B When the weights are equal, the style sheet that appears later Settings should take precedence over the style sheet settings that appear first;
- C The creator’s rules are higher than those of the viewer: that is, the CSS style set by the web page writer has priority over the style set by the browser;
- D The inherited CSS style is not as good as the CSS style specified later;
- E The rule marked with "!important" has the highest priority in the same set of property settings; the example is as follows: https://c.runoob. com/codedemo/3049
Result: Displayed in blue under Firefox; Displayed in red under IE 6;
Here is a popular CSS weight relationship diagram:
(Learning video sharing: css video tutorial)
The above is the detailed content of What types of css style sheets are there? What is selector priority?. For more information, please follow other related articles on the PHP Chinese website!

在css中,id选择符的标识是“#”,可以为标有特定id属性值的HTML元素指定特定的样式,语法结构“#ID值 {属性 : 属性值;}”。ID属性在整个页面中是唯一不可重复的;ID属性值不要以数字开头,数字开头的ID在Mozilla/Firefox浏览器中不起作用。

使用:nth-child(n+3)伪类选择器选择位置大于等于3的子元素的样式,具体代码示例如下:HTML代码:<divid="container"><divclass="item">第一个子元素</div><divclass="item"&

在之前的文章《css伪选择器学习之伪元素选择器解析》中,我们学习了伪元素选择器,而今天我们详细了解一下伪类选择器,希望对大家有所帮助!

从入门到精通:掌握is与where选择器的使用技巧引言:在进行数据处理和分析的过程中,选择器(selector)是一项非常重要的工具。通过选择器,我们可以按照特定的条件从数据集中提取所需的数据。本文将介绍is和where选择器的使用技巧,帮助读者快速掌握这两个选择器的强大功能。一、is选择器的使用is选择器是一种基本的选择器,它允许我们根据给定条件对数据集进

javascript选择器失效是因为代码不规范导致的,其解决办法:1、把引入的JS代码去掉,ID选择器方法即可有效;2、在引入“jquery.js”之前引入指定JS代码即可。

不包括。css选择器有:1、标签选择器,是通过HTML页面的元素名定位具体HTML元素;2、类选择器,是通过HTML元素的class属性的值定位具体HTML元素;3、ID选择器,是通过HTML元素的id属性的值定位具体HTML元素;4、通配符选择器“*”,可以指代所有类型的标签元素,包括自定义元素;5、属性选择器,是通过HTML元素已经存在属性名或属性值来定位具体HTML元素。

深度解析is与where选择器:提升CSS编程水平引言:在CSS编程过程中,选择器是必不可少的元素。它们允许我们根据特定的条件选择HTML文档中的元素并对其进行样式化。在这篇文章中,我们将深入探讨两个常用的选择器,即:is选择器和where选择器。通过了解它们的工作原理和使用场景,我们可以大大提升CSS编程的水平。一、is选择器is选择器是一个非常强大的选择

wxss选择器有元素选择器、类选择器、ID选择器、伪类选择器、子元素选择器、属性选择器、后代选择器和通配选择器等。详细介绍:1、元素选择器,使用元素名称作为选择器,选取匹配的元素,使用“view”选择器可以选取所有的“view”组件;2、类选择器,使用类名作为选择器,选取具有特定类名的元素,使用“.classname”选择器可以选取具有“.classname”类名的元素等等。


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

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
