Example of a neighbor sibling selector using CSS

Source: Internet
Author: User
For neighboring HTML elements that have the same parent element, you can use the adjacent sibling selector of CSS, and here we look at the adjacent sibling selector usage of CSS for a brief explanation:

You can select an element immediately after another element, and both have the same parent element in the code below, ITEM2 and ITEM3 will have an effect, and item1 will not have
HTML code:

<ul>    <li>item1</li>    <li>item2</li>    <li>item3</li></ul >

CSS code:

Li+li {font-size:50px;}

1. If you need to select an element immediately after another element, and both have the same parent element, you can use the adjacent sibling selector.
2. The adjacent sibling selector uses the plus sign "+" as the connector.

Example

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.