There are 3 tables: #table1
, #table2
and #table3
.
Is there a way to specify the style for all 3 table without the use of css class?
For instance, can we combine the following selectors:
#table1 tbody td a, #table2 tbody td a, #table3 tbody td a {
/* rules here */
}
into something like:
(#table1, #table2, #table3) tbody td a {
/* rules here */
}