blob: 31ab16da4f3cac419c3bf7b3471cacd53062a2ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>display: none applies to child node paragraphs</title>
<style>
#parent { display: none }
</style>
<div id="parent">
<p id="child">hidden</p>
</div>
|