Is there a way to select a parent element based on the class of a child element in the class? The example that is relevant to me relating to HTML output by a nice menu plugin for http://drupal.org. The output renders like this:

<ul class="menu">  
    <li>  
        <a class="active">Active Page</a>  
    </li>  
    <li>    
        <a>Some Other Page</a>  
    </li>  
</ul>

My question is whether or not it is possible to apply a style to the list item that contains the anchor with the active class on it. Obviously, I'd prefer that the list item be marked as active, but I don't have control of the code that gets produced. I could perform this sort of thing using javascript (JQuery springs to mind), but I was wondering if there is a way to do this using CSS selectors.

Just to be clear, I want to apply a style to the list item, not the anchor.

link|improve this question

75% accept rate
1  
Exactly the same problem with Telerik ASP.NET Rad Tabstrip Control... – Juan Calero May 11 '10 at 14:21
In addition to the very helpful answers given, I found it useful to look at a detailed description of css selectors, in the following address: w3.org/TR/CSS2/selector.html – green-i Sep 13 '10 at 18:52
On searching in Google I had the opposite problem and came across this question, trying to select the child of an element and its as easy as : #nav_sub li.active a – Kieran Andrews Oct 18 '10 at 3:27
2  
@Kieran to be nitpicky, x y matches y if it's a descendant of x while x>y matches y if it's a child of x – MatrixFrog Jan 20 '11 at 3:49
feedback

8 Answers

up vote 37 down vote accepted

Unfortunately, there's no way to do that with CSS.

It's not very difficult with JavaScript though. For example, if you're using jQuery:

$('.active').parent().get(0); // This would be the <a>'s parent <li>.
link|improve this answer
feedback

According to Wikipedia:

Selectors are unable to ascend

CSS offers no way to select a parent or ancestor of element that satisfies certain criteria. A more advanced selector scheme (such as XPath) would enable more sophisticated stylesheets. However, the major reasons for the CSS Working Group rejecting proposals for parent selectors are related to browser performance and incremental rendering issues.

And for anyone searching SO in future, this might also be referred to as an ancestor selector.

Update:

The Selectors Level 4 Spec allows you to select which part of the select is the subject:

The subject of the selector can be explicitly identified by prepending a dollar sign ($) to one of the compound selectors in a selector. Although the element structure that the selector represents is the same with or without the dollar sign, indicating the subject in this way can change which compound selector represents the subject in that structure.

Example 1:

For example, the following selector represents a list item LI unique child of an ordered list OL:

OL > LI:only-child

However the following one represents an ordered list OL having a unique child, that child being a LI:

$OL > LI:only-child

The structures represented by these two selectors are the same, but the subjects of the selectors are not.

Although this isn't available (currently, November 2011) in any browser or as a selector in jQuery.

link|improve this answer
4  
The CSS Selectors 4 spec has now included the ability for selectors to ascend. stackoverflow.com/q/1014958/392 – Dan Herbert Nov 22 '11 at 17:22
Just FYI, MooTools has supported CSS level 4 selectors for a couple of years now - and ironically, the Slick selector engine in MooTools actually was able to process these selectors before the spec draft was even published --> github.com/mootools/slick/wiki/… – csuwldcat Apr 25 at 17:57
feedback

Late to the party again but for what it's worth it is possible using jQuery to be a little more succinct. 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)")
link|improve this answer
The :has selector is simply put a life saver! – macke Jan 28 '11 at 22:25
feedback

The Solution: CSS Pre-Selection.

The reason W3C won't implement this the way most of us have envisioned it is because of the potential for circular references and similar performance and stability issues. However, the method I am calling "pre-selection" solves this problem by preserving top-down-only selection matching, while still affording developers greater control over styling. To use the OP's example...

Problematic:

.menu a.active < li { ... }

Safe:

.menu <li> a.active { ... }

In the former case, I could cause real problems in a web browser with something sinister like:

.menu a < *

But in the latter case, there is a guaranteed termination point, the browser simply is instructed to buffer all the "LI" matches and strip out the ones that don't match the rest of the selection (i.e., which don't contain an "A" tag with the "active" class applied).

link|improve this answer
12  
Disclaimer: Perhaps I should clarify that this is a suggestion to members of the W3C, not to the Original Poster or others who read this. The "CSS Preselection" feature is something I made up and is NOT currently a part of any CSS specification I'm aware of, official or otherwise. – Brian Lacy Feb 25 '09 at 23:31
2  
If I remember correctly, CSS is determined right - left, and so I think it would be pretty simple for them to rule out circular references. – Ben May 3 '10 at 19:39
This would really make sense. I really think these guys at W3C are underpowered in their workforce. – Camilo Martin Dec 7 '10 at 14:02
1  
This would be very neat, but I could see problems using <...> since > does not require whitespace. Regardless, the few times that I need something like this, I would love to be able to implement it in plain CSS, not Javascript, especially since your method would prevent side effects from both alternatives – shmeeps Jul 21 '11 at 16:34
feedback

The first draft of Selectors Level 4 outlines a way to explicitly set the subject of a selector. This would allow the OP to style the list element with the selector $li > a.active

From Determining the Subject of a Selector:

For example, the following selector represents a list item LI unique child of an ordered list OL:

OL > LI:only-child

However the following one represents an ordered list OL having a unique child, that child being a LI:

$OL > LI:only-child

The structures represented by these two selectors are the same, but the subjects of the selectors are not.

Edit: Given how "drafty" a draft spec can be, it's best to keep tabs on this by checking the CSSWG's page on selectors level 4.

link|improve this answer
feedback

I had the same problem with Drupal. Given the limitations of CSS, the way to get this working is to add the "active" class to the parent elements when the menu HTML is generated. There's a good discussion of this at http://drupal.org/node/219804, the upshot of which is that this functionality has been rolled in to version 6.x-2.x of the nicemenus module. As this is still in development, I've backported the patch to 6.x-1.3 at http://drupal.org/node/465738 so that I can continue to use the production-ready version of the module.

link|improve this answer
feedback

I actually ran into the same issue as the original poster. There is a simple solution of just using .parent() jQuery selector. My problem was, I was using .parent instead of .parent(). Stupid mistake I know.

Bind the events (in this case since my tabs are in Modal I needed to bind them with .live instead of a basic .click.

$('#testTab1 .tabLink').live('click', function() {
    $('#modal ul.tabs li').removeClass("current"); //Remove any "current" class
    $(this).parent().addClass("current"); //Add "current" class to selected tab
    $('#modal div#testTab1 .tabContent').hide();
    $(this).next('.tabContent').fadeIn();   
    return false;
})
$('#testTab2 .tabLink').live('click', function() {
    $('#modal ul.tabs li').removeClass("current"); //Remove any "current" class
    $(this).parent().addClass("current"); //Add "current" class to selected tab
    $('#modal div#testTab2 .tabContent').hide();
    $(this).next('.tabContent').fadeIn();   
    return false;
})

Here is the HTML..

          <div id="tabView1" style="display:none;">    
          <!-- start: the code for tabView 1 -->
            <div id="testTab1" style="width:1080px; height:640px; position:relative;">
              <h1 class="Bold_Gray_45px">Modal Header</h1>
              <div class="tabBleed"></div>
              <ul class="tabs">
                <li class="current"> <a href="#" class="tabLink" id="link1">Tab Title Link</a>
                  <div class="tabContent" id="tabContent1-1">
                    <div class="modalCol">
                      <p>Your Tab Content</p>
                      <p><a href="#" class="tabShopLink">tabBased Anchor Link</a> </p>
                    </div>
                    <div class="tabsImg"> </div>
                  </div>
                </li>
                <li> <a href="#" class="tabLink" id="link2">Tab Title Link</a>
                  <div class="tabContent" id="tabContent1-2">       
                    <div class="modalCol">
                      <p>Your Tab Content</p>
                      <p><a href="#" class="tabShopLink">tabBased Anchor Link</a> </p>
                    </div>
                    <div class="tabsImg"> </div>
                  </div>
                </li>
              </ul>
            </div>
          </div>

Of course you can repeat that pattern..with more LI's

link|improve this answer
By the way.. if the pattern confuses you due to it not being a standard jQuery Tab's pattern its because we had to build this one from scratch for it to be JAWS screen reader accessible. I will be doing a post with that soon. – jdrefahl Oct 29 '11 at 1:23
feedback

Another thought occurred to me just now that could be a pure css solution. display your active class as an absolutely positioned block and set its style to cover up the parent li.

a.active {
   position:absolute;
   display:block;
   width:100%;
   height:100%;
   top:0em;
   left:0em;
   background-color: whatever;
   border: whatever;
}
/* will also need to make sure the parent li is a positioned element so... */
ul.menu li {
    position:relative;
}    

For those of you who want to use javascript without jquery...

selecting the parent is trivial. You need a getElementsByClass function of somesort, unless you can get your drupal plugin to assign the active item an ID instead of Class. The function i provided i grabbed from some other genius on SO. it works well, just keep in mind when you're debugging that the function will always return an array of nodes, not just a single node.

active_li = getElementsByClass("active","a");
active_li[0].parentNode.style.whatever="whatever";

function getElementsByClass(node,searchClass,tag) {
    var classElements = new Array();
    var els = node.getElementsByTagName(tag); // use "*" for all elements
    var elsLen = els.length;
    var pattern = new RegExp("\\b"+searchClass+"\\b");
    for (i = 0, j = 0; i < elsLen; i++) {
       if ( pattern.test(els[i].className) ) {
       classElements[j] = els[i];
       j++;
   }
}
return classElements;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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