तत्व> तत्व का उपयोग करें मूल तत्व वाले तत्व का चयन करने के लिए चयनकर्ता।
आप सभी
तत्वों का चयन करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं जहां पैरेंट एक
उदाहरण
<!DOCTYPE html> <html> <head> <style> div > p { color: white; background-color: blue; } </style> </head> <body> <h1>Demo Website</h1> <h2>Fruits</h2> <p>Fruits are good for health.</p> <div> <p>This is demo text.</p> </div> </body> </html>