Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

CSS | element,element Selector

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The element, element selector in CSS is used to style all comma separated elements with the same style.

Syntax:

element, element {
    // CSS Property
}

Example 1:




<!DOCTYPE html>
<html>
    <head>
        <title>
            element, element Selector
        </title>
          
        <style>
          
            /* Add same CSS property to all comma 
            separated elements */
            h1, h2, div, p {
                text-align: center;
            }
              
            div, p {
                background-color: green;
                color: white;
            }
        </style>
    </head>
      
    <body>
        <h1 style = "color: green;">
            GeeksforGeeks
        </h1>
          
        <h2>element, element Selector</h2>
          
        <div>
            A computer science portal for geeks.
        </div>
        <p>Welcome to geeks classes.</p>
    </body>
</html>                    


Output:
element-element

Example 2:




<!DOCTYPE html>
<html>
    <head>
        <title>
            element, element Selector
        </title>
          
        <style>
          
            /* Add same CSS property to all comma 
            separated elements */
            h1, h2, p {
                text-align: center;
            }
            ul, p {
                background-color: green;
                color: white;
            }
        </style>
    </head>
      
    <body>
        <h1 style = "color: green;">
            GeeksforGeeks
        </h1>
        <h2>element, element Selector</h2>
        <p>Welcome to geeks classes.</p>
          
        <div>Different algorithm techniques:</div>
        <ul>
            <li>Searching Algorithms</li>
            <li>Sorting Algorithms</li>
            <li>Graph Algorithms</li>
        </ul>
    </body>
</html>                    


Output:
element-element2

Supported Browsers: The browser supported by element, element selector are listed below:

  • Apple Safari
  • Google Chrome
  • Firefox
  • Opera
  • Internet Explorer

My Personal Notes arrow_drop_up
Last Updated : 31 Dec, 2018
Like Article
Save Article
Similar Reads
Related Tutorials