How would I combined the follow into one block
#idOne td, th {
......
}
#idTwo td, th {
......
}
I tried
#idOne td, th,
#idTwo td, th {
.....
}
but theth is included as its own.
Any ideas? Thanks
You need to specify the parent for each of the td and th tags:
#idOne td, #idOne th, #idTwo td, #idTwo th {
......
}
this included as its own"?thin there twice... you could remove one of them.