I assume from your given CSS that your HTML structure looks like this:
<a> <div class="class">Content</div> </a>
You will be happy to learn that what you want to achieve is quite simple using Less; here is the code below:
a { &:hover { .class { //Apply styling here } } }
Hope this helps.
ONDoubleB
source share