CSS lighten child elements on parent mouseover

前端 未结 3 1228
耶瑟儿~
耶瑟儿~ 2020-12-14 15:39

here is my problem.
I have a div which contains two other divs: basically one for header, one for content.

I\'d like to lighten

3条回答
  •  Happy的楠姐
    2020-12-14 16:13

    You can use #div:hover, perhaps?

    #parent_div:hover #child_div_1 { background-color: #333; }
    #parent_div:hover #child_div_2 { background-color: #666; }
    

提交回复
热议问题