किसी एलीमेंट को हटाने के लिए, CSS में डिस्प्ले नो प्रॉपर्टी वैल्यू का उपयोग करें। आइए कोई भी संपत्ति मूल्य लागू करने के लिए एक उदाहरण देखें -
उदाहरण
आइए अब एक उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> span { background-color: orange; color: white; } p.demo { display: none; } span.demo1 { display: inline; } </style> </head> <body> <h1>Match Details</h1> <div> Match will begin at <p class="demo">9AM</p> 10AM on 20th December. </div> <div> Match will end at <span class="demo1">5PM</span> on 20th December. </div> </body> </html>
आउटपुट
उदाहरण
आइए अब एक और उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> span { display: none; } .demo2 { text-decoration: underline; text-decoration-style: double; text-decoration-color: red; } </style> </head> <body> <h1>Details</h1> <p class="demo">Examination Center near <span>XYZ College</span> ABC College.</p> <p class="demo2">Exam begins at 11AM.</p> </body> </html>
आउटपुट