


This article brings you information about how to use css selectors. What types are there? A brief introduction to commonly used CSS selectors has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
css tag selector
Function: Select all specified elements in the page
Syntax: Tag name: {}
id selector
Function: drill the only element in the element through its id attribute value
Syntax: #id{}
css Class selector
Function: Select a group of elements through the element's class attribute value
Syntax: .class attribute value{}
can be set for one element at the same time Multiple class attribute values, separated by spaces
Selector grouping (union selector)
Function: Selector grouping can be used at the same time Select elements corresponding to multiple selectors
Syntax: Selector 1, Selector 2, Selector N{}
Example: Select the id as p3, and the class attribute value contains p2 and h1 tags
#p3,.p2,h1{ background-color: yellow; }
css wildcard selector
Function: Select all elements on the page
Syntax: *{}
css intersection selector (composite selector)
Function: You can select elements that satisfy multiple selectors at the same time
Syntax: Selector 1 Selector 2 Selector N{ }
Note: Because id can uniquely determine an element, do not use the intersection selector for id
Example: Select one of the span
span.p4{ background-color:#4169E1; }
elements whose class attribute value contains p4 Relationship between:
Parent element: an element that directly contains child elements.
Child elements: Elements directly contained by the parent element.
Ancestor element: An element that directly or briefly contains descendant elements. The parent element is also an ancestor element.
Descendant elements: Elements that are directly or indirectly contained by ancestor elements, and child elements are also descendant elements.
Sibling elements: Elements that have the same parent element.
css descendant element selector
Function: Select the descendant elements of the specified element
Syntax: Ancestor element descendant element{}
Example: Select span in div
div span { color: chartreuse; }
css child element selector (not supported by IE6 and below browsers)
Function: Select the specified parent element Child element
Syntax: Parent element > Child element
Example: Select the span in the div
div>span{ background-color: yellow; }
Pseudo-class selector is used to represent a special type of element status.
For example: visited hyperlinks, ordinary hyperlinks, and focused text boxes
When we need to set styles for elements in these special states, we can use them The style defined by the pseudo class for the connection
Normal link: a:link
Visited link: a:visited (only color can be defined)
The link that the mouse slides over : a:hover
The link being clicked: a:active
The order between a:link and a:visited is not specified, but they must be in front of a:hover and a:active , a:hover must be in front of a:active
hover and active can also be set for other elements such as p:hover p:active, but ie6 and below do not support it
Other pseudo Class:
:focus Get focus
:before Before the specified element
:after After the specified element
::selection The selected element ( This should be used in Firefox::-moz-selection)
Use pseudo-elements to represent some special positions in the element
:first-letter: the first character
:fist-line : The first line of characters
:before : Represents the front part of the element
Generally, before needs to be used in conjunction with the content style,
You can add some content to the position of before or after through content
:after : represents the last side of the element
Set the first character in the p tag to yellow 25px
p:first-letter{ color:yellow; font-size: 25px; } p:first-line{ background: #FF0000; } 将content的内容添加到p元素的最前面 p:before{ content: "ABC"; } 将content的内容添加到p元素的最后面 p:after{ content: "DEF"; }
css attribute selector
Function: You can select the specified element based on the attribute or attribute value in the element
Syntax: [Attribute name] selection Elements with specified attributes
[Attribute name=Attribute value]Select elements with specified attribute values
[Attribute name^=Attribute value]Select elements whose attribute values start with the specified content
[Attribute name$=Attribute value]Select elements whose attribute value ends with the specified content
[Attribute value*=Attribute value]Select elements whose attribute value contains the specified content
/*为具有title属性的p元素设置背景颜色*/ p[title]{ color: darkorchid; } /*为title属性值为hello的元素设置一个背景颜色*/ p[title=hello]{ background-color: cornflowerblue; } /*为title属性是ab开头的元素设置一个背景颜色*/ p[title^="ab"]{ background-color: chartreuse; } p[title$="d"]{ font-size: 28px; }
Pseudo-class child element selector
:first-child: The first child element can be selected
:last-child: The last element can be selected
:nth-child : You can select a child element at any position
You can specify a parameter after this selector to specify which element to select
even: even number
odd: odd number Similar, but xxx-child selects from all elements, xxx-of-type selects from the specified type
p:first-child{ color:coral; } 选中第3个p标签 p:nth-child(3){ color:chartreuse; } 设置表格奇偶行背景颜色不同 tr:nth(even){ background-color:pink; } tr:nth(odd){ background-color:skyblue; }and select the next sibling element Device Function: You can select the specified sibling element immediately after an element
语法:前一个+后一个
例:选中p标签后的相邻的兄弟span(p和span不一定相邻)
p+span{ color:red; }
选中后边的所有兄弟元素
语法:前一个~后边所有
否定伪类:
作用:从选种的元素中剔除某些元素
语法: :not(选择器)
例:为所有的p元素设置一个背景颜色,出了class为hello或hello2的元素
p:not(.hello):not(.hello2){ background-color: antiquewhite; }
相关文章推荐:
The above is the detailed content of What types of css selectors are there? A brief introduction to common css selectors. For more information, please follow other related articles on the PHP Chinese website!

HTML文本框大小的设定在前端开发中是非常常见的操作。本文将介绍如何设置文本框的尺寸,并提供具体的代码示例。在HTML中,可以使用CSS来设置文本框的尺寸。具体的代码如下:input[type="text"

如何调整WordPress主题避免错位显示,需要具体代码示例WordPress作为一个功能强大的CMS系统,受到了许多网站开发者和站长的喜爱。然而,在使用WordPress创建网站时,经常会遇到主题错位显示的问题,这对于用户体验和页面美观都会造成影响。因此,合理调整WordPress主题以避免错位显示是非常重要的。本文将介绍如何通过具体的代码示例来进行主题调

深入理解CSS选择器通配符的权重和优先级在CSS样式表中,选择器是用来指定样式应用于哪些HTML元素的重要工具。选择器的优先级和权重决定了当多个规则同时作用于一个HTML元素时,应用哪个样式。通配符选择器是CSS中一种常见的选择器。它使用“*”符号表示,表示匹配所有HTML元素。通配符选择器虽然简单,但在某些情况下非常有用。然而,通配符选择器的权重和优先级也

css选择器中的高级选择器有后代选择器、子元素选择器、相邻兄弟选择器、通用兄弟选择器、属性选择器、类选择器、ID选择器、伪类选择器和伪元素选择器等。详细介绍:1、后代选择器使用空格分隔的选择器,表示选取某个元素的后代元素;2、子元素选择器使用大于号分隔的选择器,表示选取某个元素的直接子元素;3、相邻兄弟选择器使用加号分隔的选择器,表示选取紧接在某个元素后面的第一个兄弟元素等等。

:not() 选择器可用于排除特定条件的元素,其语法为 :not(selector) {样式规则}。示例::not(p) 排除所有非段落元素,li:not(.active) 排除非活动列表项,:not(table) 排除非表格元素,div:not([data-role="primary"]) 排除非 primary 角色的 div 元素。

响应式布局框架解析:从初学者到专家的必备指南随着移动设备的普及和多样化,响应式布局成为了现代Web设计的必备技能。响应式布局框架以其简单、灵活和可维护的特点,成为了开发者们的首选工具。然而,对于初学者来说,学习和理解响应式布局框架可能会感到有些困惑。本文将从初学者到专家,为您提供一个详细的指南,帮助您掌握响应式布局框架,同时提供具体的代码示例。什么是响应式布

掌握基本的CSS选择器语法,需要具体代码示例CSS选择器是前端开发中非常重要的一部分,它可以用来选择和修改HTML文档的各个元素。掌握基本的CSS选择器语法对于编写高效的样式表是至关重要的。本文将介绍一些常见的CSS选择器以及对应的代码示例。元素选择器元素选择器是最基本的选择器,可以通过元素的标签名来选择对应的元素。例如,要选择所有的段落(p元素),可以使用

CSS显示不出来怎么办,需要具体代码示例CSS(层叠样式表)是一种用于描述网页元素样式的标记语言,通过设定不同的样式规则,可以控制网页的布局、颜色、字体等外观效果。然而,有时候我们会遇到CSS显示不出来的问题,导致网页无法正常呈现所设定的样式。本文将介绍一些常见的CSS显示问题,并提供具体的代码示例来解决这些问题。引入CSS文件错误在头部(


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

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

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

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.
