Open In App
Related Articles

What does the “+” (plus sign) CSS selector mean?

Improve Article
Improve
Save Article
Save
Like Article
Like

The “+” sign selector is used to select the elements that are placed immediately after the specified element but not inside the particular elements.

Note: The IE8 and earlier versions </DOCTYPE> must be declared to work element + element selector.

Syntax:

element + element {
    // CSS property
} 

Example:




<!DOCTYPE html>
<html>
    <head>
        <title>+ sign selector</title>
        <style>
            h2 + div {
                font-size:20px;
                font-weight:bold;
                display:inline;
                background-color: yellow;
                color:green;
            }
            h1 {
            color:green;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>+ sign Selector</h2>
        <div>A computer science portal for geeks</div>
    </body>
</html>                    


Output:

Supported Browsers: The browser supported by “+” selector are listed below:

  • Apple Safari
  • Google Chrome
  • Firefox
  • Opera
  • Internet Explorer 7.0
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 04 Dec, 2018
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials