mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-08 01:19:12 +00:00
12 lines
198 B
HTML
12 lines
198 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>display: none applies to child nodes</title>
|
|
|
|
<style>
|
|
#parent { display: none }
|
|
</style>
|
|
|
|
<div id="parent">
|
|
<div id="child">Brie is good</div>
|
|
</div>
|