html - Combining two CSS elements -


how combined follow 1 block

#idone td, th {   ...... }  #idtwo td, th {   ...... } 

i tried

#idone td, th, #idtwo td, th {   ..... } 

but theth included own.

any ideas? thanks

you need specify parent each of td , th tags:

#idone td, #idone  th, #idtwo td, #idtwo th {   ...... } 

Comments

Popular posts from this blog

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -