Open In App

CSS :empty Selector

The: empty selector is used to select that element that does not contain any children (including text node). 

Syntax:



:empty {
/* CSS property */
}

Example: In this example, we are using the above-explained selector.




<!DOCTYPE html>
<html>
 
<head>
    <title>empty selector</title>
    <style>
        h1 {
            color: green;
        }
 
        div:empty {
            width: 150px;
            height: 20px;
            background: green;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>:empty selector</h2>
        <div></div><br>
        <div>A computer science portal for geeks</div>
    </center>
</body>
 
</html>

Output: 



 

Supported Browsers: 

Article Tags :