vote up 0 vote down star

#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?

flag

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

3 Answers

vote up 1 vote down check

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|flag
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 at 21:39
To refer to <div class='xyz'> you need to say div.xyz. – RichieHindle Sep 23 at 21:46
vote up 2 vote down

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|flag
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 at 21:38
Updated with a better explanation :) – cwap Sep 23 at 21:50
vote up 1 vote down

table tr td.class div

link|flag
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 at 21:37

Your Answer

Get an OpenID
or

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