css :hover only affect top div of nest

前端 未结 4 950
再見小時候
再見小時候 2020-12-20 11:18

Hi: got some html like:

And some css like:

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-20 11:57

    If the inner class is immediate child you can use the >. If it's not immediate child you can use space.

    So in first case .class > class:hover { } and in second case .class .class:hover { }

    First case : http://jsfiddle.net/wp4Jf/

    Second case : http://jsfiddle.net/wp4Jf/2

    Keep in mind that > works for ie8+

提交回复
热议问题