Implementation of CSS child element selection parent element

Implementation of CSS child element selection parent element

Usually a CSS selector selects from top to bottom, selecting child elements through parent elements. So, is it possible to select parent elements through child elements?

<ul>
    <li>
        <a href="#" class="active">1</a>
    </li>
    <li>
        <a href="#">2</a>
    </li>
</ul>

If I want to select the li that contains a.active, how can I achieve it? The CSS we have learned so far seems to have no solution, but today we will introduce a CSS pseudo-class: has() which has this function. Although it is still in the draft stage, you can still learn about it in advance.

li:has(> a.active){
    color:red;
}

In addition to indicating inclusion, :has can also indicate a sibling-following relationship.

div:has(+ p){
    color:red;
}

Indicates the selection of the <div> tag, provided that the div tag must be followed by a <p>. Can also be used with :not

article:not(:has(a)){
    color:red;
}

Represents an <article> tag that does not contain an <a>. Note the order of :not and :has here. Different orders represent different meanings.

article:has(:not(a)){
    color:red;
}

Indicates that it contains non-<a> <article> tags

In fact, the :focus-within we talked about earlier is also a pseudo-class that selects the parent element through the child element, but the condition can only be whether the child element gets the focus, while :has is more flexible and powerful.

form:focus-within{
    background-color:black;
}

If implemented through :has, it can be written like this

form:has(:focus){
    background-color:black;
}

This is the end of this article about the implementation of CSS child element selection of parent elements. For more relevant CSS child element selection of parent elements, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Use JS to operate files (FileReader reads --node's fs)

>>:  HTML head tag detailed introduction

Recommend

Hide HTML elements through display or visibility

Sometimes we need to control whether HTML elements...

Solution to prevent caching in pages

Solution: Add the following code in <head>: ...

How to create a table in mysql and add field comments

Directly post code and examples #Write comments w...

How to use video.js in vue to play m3u8 format videos

Table of contents 1. Installation 2. Introducing ...

MySQL establishes efficient index example analysis

This article uses examples to describe how to cre...

MySQL trigger detailed explanation and simple example

MySQL trigger simple example grammar CREATE TRIGG...

Two ways to exit bash in docker container under Linux

If you want to exit bash, there are two options: ...

Detailed explanation of the getBoundingClientRect() method in js

1. getBoundingClientRect() Analysis The getBoundi...

Convert XHTML CSS pages to printer pages

In the past, creating a printer-friendly version ...

How to solve the problem of margin overlap

1. First, you need to know what will trigger the v...

Docker file storage path, get container startup command operation

The container has already been created, how to kn...

Detailed usage of docker-maven-plugin

Table of contents Docker-Maven-Plugin Maven plugi...

Teach you to connect to MySQL database using eclipse

Preface Since errors always occur, record the pro...