Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Complex CSS selector for parent of active child

I want to match a with id "breadCrumb" only if it has a child span id "userName".

Match:

<div id="breadCrumb" class="nav">
    <span id="userName">esac</span>
</div>

But not match:

<div id="breadCrumb" class="nav">
    <span id="navtrail">...</span>
</div>

I want to set #breadCrumb { display: none; }, but I don't want to hide it in the second case.

share|improve this question
It's not possible by design. Duplicate question. – porneL Dec 16 '09 at 23:27
2  
You could solve this using some JS. I'd initially have the breadcrumb hidden in CSS and then show it using JS on page load. – cballou Dec 16 '09 at 23:29

marked as duplicate by Chris Johnsen, bažmegakapa, AndiDog, Richard, Lazarus Aug 24 '11 at 9:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

Firstly, these two elements aren't on the same page are they? If so it's invalid HTML as you can't (shouldn't) duplicate IDs.

You can't do this with straight CSS. My advice would be to restate the problem:

<div id="breadCrumb" class="nav userName">
    <span>esac</span>
</div>

or

<div id="breadCrumb" class="nav navtrail">
    <span>...</span>
</div>

then you can do things like:

#breadCrumb.navTrail { display: none; }

or

div.nav.navTrail { display: none; }

Applying multiple class selectors (previous example) isn't supported in IE6.

share|improve this answer
Nope, they are not on the same page. On this site, I am allowed to customize CSS, but it applies to every page on the site. – esac Dec 17 '09 at 0:04

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