HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> span{ display: none; } </style> </head> <body> <h1>CSS display: none;</h1> <p>This is paragraph. <span>This is span inside paragraph.</span></p> <p><strong>Note</strong>: 'display: none;' removes the span.</p> </body> </html>
OUTPUT
×

Save as Private