This article teaches you how to play with CSS combination selectors

This article teaches you how to play with CSS combination selectors

CSS combination selectors include various combinations of simple selectors.

There are four combinations in CSS3:

  • Descendant selectors (space separated)
  • Child element selector (separated by greater than sign)
  • Adjacent sibling selectors (separated by plus signs)
  • Normal sibling selectors (dash-separated)

1. Descendant Selector

The descendant selector is used to select descendant elements of an element.

The following example selects all <p> elements and inserts them into a <div> element:

div p{
      background-color:yellow;
    }

2. Child element selector

Compared to descendant selectors, child selectors can only select elements that are children of another element.

The following example selects all <p> elements that are direct children of a <div> element:

 div>p {
      background-color:yellow;
    }

3. Adjacent sibling selector

The adjacent sibling selector selects an element that is immediately after another element and has the same parent.

If you need to select an element that is immediately after another element and both have the same parent, you can use the adjacent sibling selector.

The following example selects all <p> elements that are located after the first <div> element:

div+p{
      background-color:yellow;
    }

4. Subsequent sibling selector

The following sibling selector selects all the adjacent sibling elements following the specified element.

The following example selects all adjacent sibling elements <p> after all <div> elements:

div~p {
      background-color:yellow;
    }

This is the end of this article about teaching you how to use CSS combination selectors. For more relevant CSS combination selector content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Some understanding of absolute and relative positioning of page elements

>>:  Two ways to start Linux boot service

Recommend

How to design MySQL statistical data tables

Table of contents Is real-time update required? M...

Alibaba Cloud Centos7.3 installation mysql5.7.18 rpm installation tutorial

Uninstall MariaDB CentOS7 installs MariaDB instea...

Solve the problem of not finding NULL from set operation to mysql not like

An interesting discovery: There is a table with a...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...

Experience of redesigning the homepage of TOM.COM

<br />Without any warning, I saw news on cnB...

Some suggestions for improving Nginx performance

If your web application runs on only one machine,...

MySQL 5.7 installation-free configuration graphic tutorial

Mysql is a popular and easy-to-use database softw...

Detailed tutorial on installing Nginx 1.16.0 under Linux

Because I have been tinkering with Linux recently...

Summary of the Differences between SQL and NoSQL

Main differences: 1. Type SQL databases are prima...

Summary of Node.js service Docker container application practice

This article will not explain the use and install...

How to change the password of mysql5.7.20 under linux CentOS 7.4

After MySQL was upgraded to version 5.7, its secu...

How to automatically backup mysql remotely under Linux

Preface: Basically, whether it is for our own use...

Introduction to Kubernetes (k8s)

I had always wanted to learn Kubernetes because i...

The difference between ${param} and #{param} in MySQL

The parameter passed by ${param} will be treated ...

How to use CSS to achieve data hotspot effect

The effect is as follows: analyze 1. Here you can...