I've done a lot of searching but can't figure this one out. The example says it all:
HTML
<div class="content">
<blockquote>
Do not select this.
</blockquote>
<div>
I can select this.
</div>
How do I select only this?
</div>
CSS
.content>:not(blockquote) {
font-weight: bold;
}
RESULT
Do not select this.
I can select this.
How do I select only this?
OBJECTIVE
Do not select this.
I can select this.
How do I select only this?