If I have a selector like
#myTable tr td .someClass{....}
Does this someClass refer "ONLY" to td having that class OR does it refer to any child of td having "someClass" ? So Is it same as ;
#myTable tr td.someClass{....}
Basically my question is does the space after td make any difference?