up vote 5 down vote favorite
1
share [g+] share [fb]

I have a draggable div element with a hover style. This works fine, but the div contains some form elements (label, input). The problem is that when the mouse is over these child elements the hover is disabled.

<div class="app_setting">
  <label">Name</label>
  <input type="text" name="name"/>
</div>

.app_setting:hover {
  cursor:move;
}

Any ideas how to get the hover to apply also to the child elements?

link|improve this question

feedback

4 Answers

up vote 12 down vote accepted
.app_setting *:hover { cursor:move }
link|improve this answer
feedback

At least 2 ways of doing it:

  • hover states for each child, either explicitly or with * selector, as suggested by garrow .class *:hover
  • cascade hover state to children .class:hover *

There are probably others

link|improve this answer
feedback

You might have to resort to JS to make it happen for IE6.

link|improve this answer
2  
I recently decided I won't be supporting IE 6 for any of my new development work. – Toby Hede Sep 26 '08 at 4:24
Lucky you. :P – Jonathan Arkell Sep 27 '08 at 0:32
feedback

This isn't a css answer, but it might still be useful to you. Someone else already suggested that you might have to resort to javascript for browser compatibility. If you do resort to javascript, you can use the jquery library to make it easy.

$('.appsetting').hover(hoverInFunc,hoverOutFunc);

This sets an event handler for hovering into and out of the selected element(s) as matched by the css style selector in the $() call.

link|improve this answer
1  
+1, also consider hoverIntent, it's a plugin that I think is much better than default .hover method. – alex Jun 15 '09 at 1:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.