#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?
feedback
|
|
Is this what you're looking for?
| |||||
feedback
|
|
If your code looks like this:
.. then this CSS selector should do the trick:
[Edited according to comment] I'm not really sure what you mean, but I guess you should read up a little on CSS selectors :)
The basic syntax of a selector is somewhat like this:
For example:
.. will select a div with an Id of mydiv.
.. will select any object with an Id of mydiv You can cascade the selectors by adding spaces between them, so:
.. 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:
.. then your selector would be
Or in case you don't care about the class of the td's
And in case you just want all divs with class="somediv"
Hope it helps :) Try one of the guides here: google search | |||||
feedback
|
|
table tr td.class div | |||
feedback
|