mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02: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>
|