Selectors - 2 in 1

Selectors - 2 in 1

Hi,

I'd like to add an hover effect to an row. So when hovering over it a class
should been added to highlight it. Doing this task with an <tr> is not a
problem. But I'm using the following tags:

<dl>
<dt>name</dt><dd>Tom</dd>
<dt>name</dt><dd>Nick</dd>
<dt>name</dt><dd>Steve</dd>
</dl>

Right now I'm only able to hover either the dt or the dd tag but not both
simultaneously. Or I was able to select with "this" the dt tag an all dd tags.
I tried different selector methods but without success. Has anyone an idea
how to bind both tags together to get a nice row hover effect?

thanks indeed

T.C.