On child hover change the css of Parent

后端 未结 5 2091
野性不改
野性不改 2021-02-20 02:41

I want to change the css of parent on hover of Child element.

5条回答
  •  温柔的废话
    2021-02-20 03:23

    As other posts say there is no parent selector.

    This is how it should work:

    li:has(> i:hover) { /* styles to apply to the li tag */ }
    

    What this does is check if li has a i with :hover state in it. If that's the case it applies the css. Unfortunately this is not supported yet..

提交回复
热议问题