I have a lot of tables that have different names like: my-table-1590 , my-table-1400, my-table-1121 , and so on.
I want to add in CSS, one custom style that should change all these tables together.
For example, i want instead of all these individual style code:
#my-table-1590 .my-table--desktop .my-table-product-0 {
background-color: red;
}
#my-table-1400 .my-table--desktop .my-table-product-0 {
background-color: red;
}
#my-table-1121 .my-table--desktop .my-table-product-0 {
background-color: red;
}
...
I want to add only one code that will change all tables (including future tables that i will make).
Is it possible to do this?
Thanks in advance for all the help!!