noneEl elemento completo, incluyendo todo su contenido, el contenido de su contenido y así sucesivamente no se muestra, incluyendo texto y cajas.
| 1 | <!DOCTYPE html> |
| 2 | <html lang="es"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8"> |
| 5 | <meta name="viewport" |
| 6 | content="width=device-width"> |
| 7 | <title>inline</title> |
| 8 | <style> |
| 9 | div { |
| 10 | display: none |
| 11 | } |
| 12 | </style> |
| 13 | </head> |
| 14 | <body> |
| 15 | <p>Ahora me ves.</p> |
| 16 | <div>Ahora no me ves.</div> |
| 17 | </body> |
| 18 | </html> |