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

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -