up vote 0 down vote favorite
share [g+] share [fb]

#div that holds table, table tr td.class of td now what goes here to style a div class I put inside of the td class?

link|improve this question

70% accept rate
2  
It might help clarify if you write a bit of code in your example. – Andy Hume Sep 23 '09 at 21:32
feedback

3 Answers

up vote 1 down vote accepted

Is this what you're looking for?

td.class-of-td div.class-of-div {
    // Style of div of class "class-of-div" inside a td of class "class-of-td".
}
link|improve this answer
gotcha so when I do div where you said, its a class. so do I do table tr td.class #name of div in table? or table tr td.class .name of div in table? cause its a div class – Ralph The Mouf Sep 23 '09 at 21:39
To refer to <div class='xyz'> you need to say div.xyz. – RichieHindle Sep 23 '09 at 21:46
feedback

If your code looks like this:

<div id="mydiv">
    <table>
       <tr>
          <td class="somecell">
             <div>some text</div>
          </td>
       </tr>
    </table>
</div>

.. then this CSS selector should do the trick:

#mydiv table tr td.somecell div

[Edited according to comment]

I'm not really sure what you mean, but I guess you should read up a little on CSS selectors :)

# represents an ID

. represents a class

The basic syntax of a selector is somewhat like this:

[Type][[# or .][name]] [.. next selector]

For example:

div#mydiv

.. will select a div with an Id of mydiv.

#mydiv

.. will select any object with an Id of mydiv

You can cascade the selectors by adding spaces between them, so:

div table.bluetable

.. will select all tables with a class of "bluetable" whose parent is a div.


Now, if I understood your comment correct, your code looks like this:

<div id="mydiv">
    <table>
       <tr>
          <td class="somecell">
             <div class="somediv">some text</div>
          </td>
       </tr>
    </table>
</div>

.. then your selector would be

#mydiv table tr td.somecell div.somediv

Or in case you don't care about the class of the td's

#mydiv table tr td div.somediv

And in case you just want all divs with class="somediv"

div.somediv

Hope it helps :)

Try one of the guides here: google search

link|improve this answer
gotcha so when I do div where you said, its a class. so do I do table tr td.class #name of div in table? or table tr td.class .name of div in table? cause its a div class – Ralph The Mouf Sep 23 '09 at 21:38
Updated with a better explanation :) – cwap Sep 23 '09 at 21:50
feedback

table tr td.class div

link|improve this answer
gotcha so when I do div where you said, its a class. so do I do table tr td.class #name of div in table? or table tr td.class .name of div in table? cause its a div class – Ralph The Mouf Sep 23 '09 at 21:37
feedback

Your Answer

 
or
required, but never shown

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