作者:Echocc07 | 来源:互联网 | 2023-10-12 10:36
CSS 选择器的作用
原文:https://www.geeksforgeeks.org/role-of-css-selector/
在本文中,我们将讨论在设计网页时 CSS 选择器是如何重要的。CSS 选择器在响应网页中的作用非常重要。让我们一个一个讨论。
子选择器的作用:在子选择器中,任何元素的属性都是另一个元素的直接父元素。
语法:
if article > p
它定义段落元素是文章的直接子元素,那么 CSS 选择器属性将适用。
超文本标记语言
Child Selector
Subheading 1
In this example, article is
not the direct child and
ARTICLE which is inside DIV,
which is inside SECTION. In
CSS properties of child,
selector will not apply in
this section.
Subheading 2
In this example ARTICLE as a
direct child of the SECTION
element. In CSS properties
of child, selector will directly
apply in this section.
上述代码的输出验证了子 CSS 选择器属性是否适用于节元素。
输出:
后代选择器的角色:后代选择器的 CSS 选择器属性适用于每一个级别或父元素。
语法:
section li
它定义“li”是子元素,但在任何级别上,它也只考虑截面元素和属性中的“li”元素适用。
超文本标记语言
Descendant Selector
Table of contents:
- Article 1
- Article 2
- Article 3
Shopping List:
输出: