I have a couple of <div>s, and some of them have class: hidden, like this:
<div id="firstDiv" class="hidden">content</div>
<div id="secondDiv">content</div>
I know want to select the first <div> that has NOT the class: hidden.
I was trying this so far in CSS: div:not(.hidden):first-child but it's not working.
How do I write the selectors correctly?
.hiddenclass, and are first child of some element.