What is a hierarchical selector in CSS? how to use?

青灯夜游
Release: 2022-08-03 10:18:48
forward
3100 people have browsed it

In the previous article "Explain the basic selectors of CSS in detail and talk about selector priority", we learned about the basic selectors in CSS. In this article we will talk about hierarchical selection. Device, hope it helps everyone!

What is a hierarchical selector in CSS? how to use?

Level selector

CSSLevel selectoris a selector usage provided based on the relationship between HTML node trees, so If you want to learnLevel Selectorwell, you must first figure out what the relationship between HMTL elements looks like. [Recommended learning:css video tutorial]

First look at the following HTML code:

nbsp;html>   HTML测试代码 

Copy after login

The above code can be drawn into the following node tree, as shown in the figure below

What is a hierarchical selector in CSS? how to use?

Now let’s look at the relationship between an HTML element. There are three relationships between elements in an HTML page as shown below:

  • The relationship between parent and child: In the above code, the

    element on the left is

    ## The parent element of the # element, and conversely

    is the child element of

    . Of course, there are many more such parent-child structures.
  • Relationship between brothers: In the above code code,

    elements and

    # The ## element is a sibling element, and theelement and theelement are also sibling elements.

  • The relationship between ancestors and descendants

    : In the above code code, the

    element iselement, and conversely the element is the ancestor element of the

    element.

  • Types of hierarchical selectorsAccording to the three relationships between HTML elements, CSS hierarchical selectors provide The following 4 usages are provided:

      Descendant selector: Treat an element as an ancestor element and locate all descendant elements of this element.
    • Child selector: Treat an element as a parent element and locate all child elements of this element.
    • Adjacent sibling selector: Use an element as the target element and locate the next specified element that has the same parent element as the target element
    • Ordinary sibling selector: takes a certain element as the target element and locates any specified element that has the same parent element as the target element.
    Selectors

    The four selectors provided by CSS correspond to the four usages of CSS hierarchical multiple-choice questions, as shown below

      A space indicating the descendant relationship ( )
    • Angle brackets indicating a parent-child relationship (
    • >

      )

    • The plus sign indicating the relationship between adjacent brothers (
    • )

    • The tilde indicating the relationship between brothers (
    • ~

      )

    • In Web development, the first two are more commonly used -
    Descendant Selector

    andChild Selector.Let’s look at a piece of code first:

        使用CSS3层次选择器  
    
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    Copy after login

    What is a hierarchical selector in CSS? how to use?

    Descendant selector

    is used to select an element All descendant elements, such as the above html, use the following style, what will be the effect?

    body div { background-color: yellow; }
    Copy after login

    Here, the background color of the descendant div element of the body element is set to yellow. In other words, all divs are dyed yellow.

    What is a hierarchical selector in CSS? how to use?

    Subselector

    is used to select all first-level child elements under a certain element (possibly multiple elements) . For example, what will be the effect if we use the following selector and style?

    body > div { background-color: red; }
    Copy after login

    After this setting, the first-level div elements under the body, here are the div elements with content 1, 2, 3, 4, and 7, set the background color to red.

    What is a hierarchical selector in CSS? how to use?

    Adjacent sibling selector

    is used to select the next element in the same directory of a certain (or some) element. element. For example, what will the effect look like after we use the following style settings here?

    .active + div { background-color: green; }
    Copy after login

    Here we set the adjacent sibling node of the .active selector, which is the second div element, and set its background color to green.

    What is a hierarchical selector in CSS? how to use?

    Universal sibling selector

    is used to select all following elements in the sibling directory of a certain (or certain) element. mark. It is similar to the adjacent sibling selector and needs to be in the same parent element.

    比如使用下面的代码,影响到的样式:

    .active ~ div { background-color: pink; }
    Copy after login

    这里将类名为"active"的元素(这里为第一个div)的通用兄弟(这里是内容为2、3、4、7的div)设置了背景色为粉红色。

    What is a hierarchical selector in CSS? how to use?

    (学习视频分享:web前端入门

The above is the detailed content of What is a hierarchical selector in CSS? how to use?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!