On child hover change the css of Parent

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

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

5条回答
  •  南旧
    南旧 (楼主)
    2021-02-20 03:28

    As already mentioned there is no parent selector but if you recognise that you are already hovering over the parent you can achieve what you want.

    A rough example:

    #main-menu > li:hover > a
    {
      background-color: #F00;
    }
    
    #main-menu >  li > .submenu > li:hover
    {
      background-color:#00F;
    }

提交回复
热议问题