I have some HTML code like this:
<section>
<header>
<p>intro text</p>
<h1>some text</h1>
</header>
<div><img src="" alt="" /></div>
<div><h2>some text</h2></div>
<div>some text</div>
<span>some meta text</span>
<button>push me</button>
</section>
Now I want to select every element except the header tags. Is that possible? Tried with "(not)" but it is not working (I think "not" can't handle an array).
Is there an alternative way to handle this? I mean without using "not".