I have a definition that looks like this:
<dl>
<dt>Title</dt>
<dd>Entry</dd>
<dd>Entry</dd>
<dd>Entry</dd>
<dt>Title</dt>
<dd>Entry</dd>
<dt>Title</dt>
<dd>Entry</dd>
<dd>Entry</dd>
<dt>Title</dt>
<dd>Entry</dd>
</dl>
Is it possible to construct some selectors that targets only each odd/even dt and it's following dd's without introducing some wrapping markup?
The goal is to give an alternating background color to each dt and it's dd elements.
Here is a link with the markup.
http://jsbin.com/cehudaqobo/edit?html,css,js,output
I tried the suggested solutions but to no avail.
Well it's not pretty but you will have to specify the '+' rule for the amount of potential dd'
I feel that this jQuery would solve your problem more elegantly https://api.jquery.com/nextUntil/