178

I know that there does not exist a CSS parent selector, but is it possible to style a parenting element when hovering a child element without such a selector?

To give an example: consider a delete button that when hovered will highlight the element that is about to become deleted:

<div>
    <p>Lorem ipsum ...</p>
    <button>Delete</button>
</div>

By means of pure CSS, how to change the background color of this section when the mouse is over the button?

Community
  • 1
  • 1
NGLN
  • 41,230
  • 8
  • 102
  • 186

7 Answers7

144

Well, this question is asked many times before, and the short typical answer is: It cannot be done by pure CSS. It's in the name: Cascading Style Sheets only supports styling in cascading direction, not up.

But in most circumstances where this effect is wished, like in the given example, there still is the possibility to use these cascading characteristics to reach the desired effect. Consider this pseudo markup:

<parent>
    <sibling></sibling>
    <child></child>
</parent>

The trick is to give the sibling the same size and position as the parent and to style the sibling instead of the parent. This will look like the parent is styled!

Now, how to style the sibling?

When the child is hovered, the parent is too, but the sibling is not. The same goes for the sibling. This concludes in three possible CSS selector paths for styling the sibling:

parent sibling { }
parent sibling:hover { }
parent:hover sibling { }

These different paths allow for some nice possibilities. For instance, unleashing this trick on the example in the question results in this fiddle:

div {position: relative}
div:hover {background: salmon}
div p:hover {background: white}
div p {padding-bottom: 26px}
div button {position: absolute; bottom: 0}

Style parent image example

Obviously, in most cases this trick depends on the use of absolute positioning to give the sibling the same size as the parent, ánd still let the child appear within the parent.

Sometimes it is necessary to use a more qualified selector path in order to select a specific element, as shown in this fiddle which implements the trick multiple times in a tree menu. Quite nice really.

NGLN
  • 41,230
  • 8
  • 102
  • 186
135

I know it is an old question, but I just managed to do so without a pseudo child (but a pseudo wrapper).

If you set the parent to be with no pointer-events, and then a child div with pointer-events set to auto, it works:)
Note that <img> tag (for example) doesn't do the trick.
Also remember to set pointer-events to auto for other children which have their own event listener, or otherwise they will lose their click functionality.

div.parent {  
    pointer-events: none;
}

div.child {
    pointer-events: auto;
}

div.parent:hover {
    background: yellow;
}    
<div class="parent">
  parent - you can hover over here and it won't trigger
  <div class="child">hover over the child instead!</div>
</div>

Edit:
As Shadow Wizard kindly noted: it's worth to mention this won't work for IE10 and below. (Old versions of FF and Chrome too, see here)

Legends
  • 16,460
  • 9
  • 75
  • 108
guy_m
  • 2,218
  • 1
  • 14
  • 28
  • 3
    Worth to mention this won't work for IE10 and below. (Old versions of FF and Chrome too, see [here](http://caniuse.com/#feat=pointer-events)) – Shadow The Vaccinated Wizard May 03 '17 at 07:22
  • 2
    Setting pointer events to none also means that event listeners on that element will not work..! – rhazen Sep 25 '18 at 09:49
  • 1
    @rhazen you're absolutely right. Although from my experience this usage is usually connected to a single click area/element, so you can assign the click listener to the parent – guy_m Sep 26 '18 at 00:29
  • How about if I have two-level, parent, child1, and child of child1. I added pointer-events none to parent and pointer-events auto to child. I want to hover to child1 except the child of child 1. Demo here: https://codepen.io/lion5893/pen/WNQgyVx – Nam Lê Quý May 15 '20 at 06:46
  • this is a thumb up bro, i manage to css the parent when hover the child only, wp – Mark Sparrow Feb 24 '21 at 17:17
14

Another, simpler "alternate" approach (to an old question)..
would be to place elements as siblings and use:

Adjacent Sibling Selector (+) or General Sibling Selector (~)

<div id="parent">
  <!-- control should come before the target... think "cascading" ! -->
  <button id="control">Hover Me!</button>
  <div id="target">I'm hovered too!</div>
</div>
#parent {
  position: relative;
  height: 100px;
}

/* Move button control to bottom. */
#control {
  position: absolute;
  bottom: 0;
}

#control:hover ~ #target {
  background: red;
}

enter image description here

Demo Fiddle here.

Onur Yıldırım
  • 27,841
  • 11
  • 78
  • 96
  • 1
    worth noting that this only works it #targets comes after #control in the DOM (i.e. you can't affect previous siblings, only following siblings) – Gio Mar 16 '20 at 10:41
12

there is no CSS selector for selecting a parent of a selected child.

you could do it with JavaScript

Kae Verens
  • 3,806
  • 3
  • 19
  • 36
  • 3
    true. something like $(child).hover(function(){$(this).closest(parentSelector).addClass('hoverClass')}, function(){$(this).closest(parentSelector).removeClass('hoverClass')}); – Aamir Afridi Jan 16 '14 at 09:42
  • 9
    @AamirAfridi That's not pure JS though, you have to use jQuery with that. – Ivotje50 Mar 22 '15 at 14:29
6

As mentioned previously "there is no CSS selector for selecting a parent of a selected child".

So you either:


Here is the example for the javascript/jQuery solution

On the javascript side:

$('#my-id-selector-00').on('mouseover', function(){
  $(this).parent().addClass('is-hover');
}).on('mouseout', function(){
  $(this).parent().removeClass('is-hover');
})

And on the CSS side, you'd have something like this:

.is-hover {
  background-color: red;
}
Community
  • 1
  • 1
Remy Lagerweij
  • 125
  • 2
  • 6
3

This solution depends fully on the design, but if you have a parent div that you want to change the background on when hovering a child you can try to mimic the parent with a ::after / ::before.

<div class="item">
    design <span class="icon-cross">x</span>
</div>

CSS:

.item {
    background: blue;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.item span.icon-cross:hover::after {
    background: DodgerBlue;
    border-radius: 10px;
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}

See a full fiddle example here

Jan Mellström
  • 206
  • 1
  • 11
-8

This is extremely easy to do in Sass! Don't delve into JavaScript for this. The & selector in sass does exactly this.

http://thesassway.com/intermediate/referencing-parent-selectors-using-ampersand

admazzola
  • 97
  • 4
  • 8
    -1 Sass does not add more functionality to css, it just makes writing it easier. Anything you can do in sass can be done in css and visa versa. – Dastur Sep 01 '16 at 07:01
  • 3
    @Dastur Given variables and mixins, I would say Sass adds an awful lot to CSS. You can do it all in CSS, in the same way you could still write sophisticated software using plain old C. Modern languages add a lot without enabling something that couldn't be done before. Same with Sass and CSS. – Cobus Kruger Nov 01 '16 at 09:11
  • 6
    @Cobus Kruger Your partially right, but you can't make that comparison. Whereas languages like c++ c# and javascript may be based off C, they do not turn into C before runtime. Sass is converted in css before runtime therefore your never truly loading a sass stylesheet, just a css one. – Dastur Nov 01 '16 at 13:29