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 have a html page that contains a structure like this:

<table class="pick">
    <tr>
        <td>
            <div class="class1">
                <div class="class2">
                    <div class="myClass"></div>
                </div>
            </div>
        </td>
        <td>
            <div class="class1">
                    <div class="myClass"></div>
            </div>
        </td>
    </tr>
</table>

how can I select the elements that are inside the element with myClass class which is inside the pick class, but the structure of the div elements is variable, as in the code example?

I probably need something like this: .pick .something_else .myClass { /*style*/ } but I don't know exactly what.

share|improve this question

1 Answer

up vote 6 down vote accepted

.pick .myClass { /* style */ } will do the job. There is no need to add all the classes till the one you wish to select.

share|improve this answer
it worked, thanks! – Alina Danila May 8 '12 at 10:11

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.