Re: display: none

> You wanted to see h4 elements, no? If so, I suggest: 
> 
>   body * { display: none } 

This will match all h4 elements, and has a higher specificity
than:

>   h4 { display: block }

So, this should only show first level text nodes.

Received on Sunday, 4 June 2006 19:56:31 UTC