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

Related Articles

CSS | [attribute=value] Selector

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

The [attribute=value] selector in CSS is used to select those element whose attribute value is equal to “value”.
Syntax: 
 

element [attribute = "value"] {
    // CSS Property
}

Note: <!DOCTYPE> must be declared for IE8 and earlier versions.
Example 1: 
 

html




<!DOCTYPE html>
<html>
    <head>
         
        <!-- CSS property used here -->
        <style>
            h1[id = "geeks"] {
                background-color: green;
                color:white;
            }
            li[class = "gfg"] {
                color:green;
            }
        </style>
    </head>
     
    <body>
        <h1 id = "geeks">GeeksforGeeks</h1>
        <ul>
            <li class = "gfg">Data Structure</li>
            <li class = "geeks">Algorithm</li>
            <li class = "gfg">DBMS</li>
            <li class = "geeks">C++ programming</li>
        </ul>
 
    </body>
</html>                   

Output: 
 

Example 2: 
 

html




<!DOCTYPE html>
<html>
    <head>
        <title>
            CSS [attribute=value] Selector
        </title>
         
        <!-- CSS property -->
        <style>
            p[this=Geeks] {
                background-color: green;
                color:white;
            }
        </style>
    </head>
     
    <body>
        <h2>[attribute=value] Selector</h2>
        <p this = "Geeks">Paragraph 1</p>
 
        <p this = "geeks">Paragraph 2</p>
 
        <p this="Geeks">Paragraph 2</p>
 
    </body>
</html>                   

Output: 
 

Supported Browser:

  • Google Chrome
  • Microsoft Edge
  • Firefox
  • Opera
  • Safari

My Personal Notes arrow_drop_up
Last Updated : 04 Aug, 2021
Like Article
Save Article
Similar Reads
Related Tutorials