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