Forum Moderators: not2easy
#foo {
color: #FFFFFF;
}
Any object with id=foo
td#foo {
color: #FFFFFF;
}
td with id=foo
table#foo td {
color: #FFFFFF;
}
Any td within a table with id=foo (such as <table id="foo"><tr><td>Hello</td><tr></table> )
td#foo, td.bar {
color: #FFFFFF;
}
td with id=foo or class=bar (you can combine as many as you want separating them with commas, using any of the previous formats)
It tells you this:
Selector 1: *.MenuRow td
Selects any td element that is a descendant of any element with a class attribute that contains the word MenuRow.