Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to select the <li> element that is a parent (which immediately precedes the anchor tag, if that helps...) according to some attribute of the anchor tag.

i.e. my CSS would be something like this:

li < a.active {
    property: value;
}

Obviously there are ways of doing this with JavaScript but I'm hoping that there is some sort of workaround that exists native to CSS 2

Any ideas?

[Edit:] The menu that I am trying to style is being spewed out by a cms so I can't move the active tag to the li element... (unless I theme the menu creation module which I'd rather not do)

share|improve this question
2  
According to the jQuery documentation (from which I presume you are borrowing your selector syntax) that selector would actually match a <li> that is the child of an <a class="active">. Are you sure you don't mean "li > a.active"? docs.jquery.com/Selectors – Tomas Lycken Jun 18 '09 at 20:03
7  
I wasn't actually borrowing from the jquery docs I was just trying to illustrate the element that I am trying to select. Your suggestion would select the all of the a children of an li tag (see w3.org/TR/CSS2/selector.html) – j3frea Jun 18 '09 at 20:41
1  
More discussion of this problem at stackoverflow.com/questions/45004/… – MatrixFrog Jan 20 '11 at 3:55
4  
@Tomas li > a.active selects the child, not the parent, silly. – Stewart Mar 14 '12 at 18:14

13 Answers

up vote 287 down vote accepted

There is currently no way to select the parent of an element in CSS.

If there was a way to do it, it would be in the CSS selectors specs, either CSS 2 or 3

In the meantime you'll have to resort to JavaScript if you need to select a parent element.


The CSS Selectors 4 Spec provides a syntax for defining the "subject" of a selector by using a ! sign. As of 2012, this is not available in any browser.

Using CSS4 selectors, the original question could be solved with this:

li! > a.active { /* styles to apply to the li tag */ }
share|improve this answer
16  
It would seem that it has already been suggested and rejected: stackoverflow.com/questions/45004/… – RobM Oct 27 '10 at 12:22
5  
Looks like the subject selector has been revisited, except by using a ! now: The subject of the selector can be explicitly identified by appending an exclamation mark (!) to one of the compound selectors in a selector. – animuson Jan 29 '12 at 21:30
3  
The prepended $ looked better for me... the appended ! can be overlooked more easily. – Christoph Feb 13 '12 at 11:25
2  
Just as a quickie, the Selectors 4 WD was updated a couple of months ago to include the new syntax. Of course, updating an "old" unusable sample to something that still can't be used anyway would be futile. Besides, they still haven't decided on the final syntax. – BoltClock Oct 23 '12 at 15:11
4  
Major plot twist! The Selectors 4 WD was just updated today to exclude the subject indicator from the fast profile, which is to be used by CSS implementations. If this change remains, it means you won't be able to use the subject indicator in stylesheets anymore (unless you use add some sort of polyfill like the one described in another answer) - you can only use it with the Selectors API and anywhere else that the complete profile may be implemented. – BoltClock May 2 at 15:19
show 9 more comments

I don´t think you can select the parent in css only.

But as you already seem to have an .active class, wouldn´t it be easier to move that class to the li (instead of the a)? That way you can access both the li and the a via css only.

share|improve this answer
You can't shift the pseudo selector to the list item, as it is not a focusable element. He's using the :active selector, so when the anchor is active he wants the list item to be affected. List items will never be in the active state. As an aside, it's unfortunate that such a selector doesn't exist. Getting a pure CSS menu to be fully keyboard accessible seems to be impossible without it (using sibling selectors you can make submenus created using nested lists to appear, but once the list gains focus it becomes hidden again). If there are any CSS-only solutions to this particular conun – Dominic Aquilina Aug 26 '11 at 13:46
2  
@Dominic Aquilina Take a look at the question, the OP is using a class, not a pseudo selector. – jeroen Aug 26 '11 at 14:34
@Jeroen, sometimes you want to highlight the parent menu link that holds the child anchor link...just for visual clarity. Example - dropdown menus. – blachawk May 2 at 4:06
@blachawk I know, I use that all the time. However, the question just talks about a link in a list item so that is why I suggested moving the class. – jeroen May 2 at 14:07

You can use this script: http://demo.idered.pl/jQuery.cssParentSelector/

*! > input[type=text] { background: #000; }

This will select any parent of a text input. But wait, there's still much more. If you want, you can select a specified parent:

.input-wrap! > input[type=text] { background: #000; }

or select it when it's active:

.input-wrap! > input[type=text]:focus { background: #000; }

Check out this HTML:

<div class="input-wrap">
    <input type="text" class="Name"/>
    <span class="help hide">Your name sir</span>
</div>

you can select that span.help when the input is active and show it:

.input-wrap! .help > input[type=text]:focus { display: block; }

There are many more capabilities; just check out the documentation of the plugin.

BTW, it works in IE.

share|improve this answer
suppose using jquery patent() would be faster. This need testing, however – Dan Sep 22 '11 at 19:30
8  
The patent() method is too nice :) – Emanuele Del Grande May 11 '12 at 14:16
@Idered It fails when you have CSS declaration of a Selector Subject with no child selector (#a! alone throws an error, #a! p works), and so the others will not works either because of Uncaught TypeError: Cannot call method 'split' of undefined: see jsfiddle.net/HerrSerker/VkVPs – HerrSerker Apr 16 at 15:33
@HerrSerker I think #a! is an invalid selector, what should it select? – Idered Apr 17 at 13:41
1  
Per my comment on the accepted answer, it looks like the polyfill may be required even in the near future after all, because the subject indicator may never be implemented by browsers in CSS. – BoltClock May 2 at 15:35
show 1 more comment

As mentioned by a couple of others, there isn't a way to style an element's parent/s using just CSS but the following works with jQuery:

$("a.active").parents('li').css("property", "value");
share|improve this answer
12  
The < selector does not exist (verified using jQuery 1.7.1). – Rob W Feb 23 '12 at 17:53
Perhaps that <-syntax worked in 2009 but I've updated it (for 2013). – Alastair May 2 at 5:10
Even better, use jQuery's built-in :has() selector: $("li:has(a.active)").css("property", "value");. It reads similarly to CSS 4's proposed ! selector. See also: :parent selector, .parents() method, .parent() method. – Rory O'Kane May 8 at 22:12
And rather than using .css("property", "value") to style the selected elements, you should usually .addClass("someClass") and have in your CSS .someClass { property: value } (via). That way, you can notate the style with the full power of CSS and any preprocessors you are using. – Rory O'Kane May 8 at 22:20

I've certainly come across instances when it would be handy, but unfortunately parent selectors do not exist in CSS.

Can you explain more about what you're trying to achieve? There might be another way in to a solution, e.g. move the style to the li, then disable it in a.active or via a child selector.

share|improve this answer

Not in CSS 2 as far as I'm aware. CSS 3 has more robust selectors but is not consistently implemented across all browsers. Even with the improved selectors, I don't believe it will accomplish exactly what you've specified in your example.

share|improve this answer

there isn't a way to do this in css2. you could add the class to the li and reference the a

li.active > a {
    property: value;
}
share|improve this answer
1  
by making the a element display:block you can style it to fit the whole of the li area. if you can explain what style you are looking for perhaps I could help with a solution. – Josh Jun 18 '09 at 21:53
+1 for saving my mental sanity. – Esteban Apr 21 at 22:04

The css3 selector "General sibling combinator" could maybe used for what you want:

E ~ F {
    property: value;
}

This matches any F element that is preceded by an E element.

share|improve this answer
6  
That's not correct answer, but thanks for remembering us about this selector – Dan Sep 22 '11 at 19:25

Try to switch "a" to block display, and then use any style You want. "a" element will fill "li" element and You will be able to modify it's look as You want. Dont forget to set "li" padding to 0.

li {padding: 0; overflow: hidden;}
a {display: block; width: 100%; color:..., background:..., border-radius:..., etc...}
a.active {color:..., background:...}
share|improve this answer

You might try to use hyperlink as the parent, and then change the inner elements on hover. Like this:

a.active h1 {color:red;}

a.active:hover h1 {color:green;}

a.active h2 {color:blue;}

a.active:hover h1 {color:yellow;}

This way you can change the style in multiple inner tags, based on the rollover of the parent element.

share|improve this answer
1  
That is correct, but limits the markup code within the a tag to certain elements only, if you want to conform to XHTML standards. For instance, you cannot use a div within a, without getting a warning of violating the schema. – Ivaylo Slavov Jul 24 '12 at 18:22
2  
Totaly right Ivaylo! "a" is a non-block element, so can't use block elements inside it. – riverstorm Dec 12 '12 at 22:34

The W3C excluded such a selector because of the huge performance impact it would have on a browser.

share|improve this answer
8  
false. because the DOM is a tree, they have to go to the parent before getting to the child, so the simply just go back one node. o.o – NullVoxPopuli Nov 10 '11 at 16:56
2  
CSS selectors are a queue so selector order is evaluated rather than the document XPath or DOM hierarchy. – Paul Sweatte Aug 18 '12 at 16:14
@rgb At least that's what they told us. – HerrSerker Apr 16 at 15:35

If you want to display a child element based on a parent pseudo class, you can define the default state of the child element, then redefine it for each state change of the parent:

li:hover > a * { display: none; }

li:hover > a:hover * { display: block; }
share|improve this answer
4  
This does not define the sate of the parent at all... – epeleg Feb 15 '12 at 18:17

I know the OP was looking for a CSS solution but it is simple to achieve using jQuery. In my case I needed to find the <ul> parent tag for a <span> tag contained in the child <li>. jQuery has the :has selector so it's possible to identify a parent by the children it contains:

$("ul:has(#someId)")

will select the ul element that has a child element with id someId. Or to answer the original question, something like the following should do the trick (untested):

$("li:has(.active)")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.