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.

I don't want css to be applied to a child element.

<div id="main">
    <div id="child">
        <div id="subchild">
            <p> subchild </p>
        </div>
        <p> child </p>
    </div>
</div>

I want to apply css to all divs except the subchild div and its children.

share|improve this question
2  
What does your css look like? – Andres Ilich Jan 12 '12 at 16:13
In this particular case you might just write #main, #child {...}. – Vadim Belyaev Jan 12 '12 at 16:22

1 Answer

up vote 1 down vote accepted

To do this, simply apply the CSS to all divs and then reverse it for the subchild:

#child
{
    display: inline;
    background-color: black;
}
#child #subchild
{
    /* Assuming this was blocked/transparent before the '.child' css applied. */
    display: block;
    background-color: transparent;
}
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.