प्रत्येक
तत्व को स्टाइल करने के लिए जिसमें CSS के साथ कोई बच्चा नहीं है, इसका उपयोग करें:खाली चयनकर्ता t. आप इसे लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं:खाली चयनकर्ता
उदाहरण
<!DOCTYPE html> <html> <head> <style> p.demo { width: 300px; height: 20px; background: gray; } p:empty { width: 150px; height: 20px; background: orange; } </style> </head> <body> <p class = "demo">This is demo text. Below is empty text.</p> <p></p> </body> </html>