Select sibling elements using CSS

WBOY
Release: 2023-09-13 09:53:05
forward
1166 people have browsed it

If we want to match elements that appear immediately after the first selector, we can use the adjacent sibling selector ( ). Here, both selectors are children of the same parent element.

The syntax of CSS adjacent sibling combinator is as follows:

Selector + Selector{ attribute: /*value*/ }
Copy after login

If we want to select sibling elements under the same parent element, regardless of the position of the second selected element, we can use CSS Universal sibling selector.

The syntax of CSS universal sibling selector is as follows:

Selector ~ Selector{ attribute: /*value*/ }
Copy after login

The following example demonstrates CSS adjacent and general sibling selector properties.

Example

Demonstration

    
  

Check this

Some text in section

hello

Selected

Copy after login

Output

This will produce the following results -

使用 CSS 选择同级元素

Example

Live Demonstration

    
  

Random text 1

Some text in section

hello

Selected

Copy after login

Output

This will produce the following results−

使用 CSS 选择同级元素

The above is the detailed content of Select sibling elements using CSS. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
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!