I have following css snipet:
#div1 table, #div2 table, #div3 table {
color: white;
font-family: monospace;
}
may i fold it into something like below?
#(div1|div2|div3) table {
color: white;
font-family: monospace;
}
I have following css snipet:
#div1 table, #div2 table, #div3 table {
color: white;
font-family: monospace;
}
may i fold it into something like below?
#(div1|div2|div3) table {
color: white;
font-family: monospace;
}
I found out how to do it, if someone interested, below the answer:
[id$='-tabl'] table {
color: white;
font-family: monospace;
}
in my case all DIV selectors have IDs ending on '-table', you can use regex "*^$" to match ID names. But if you have different names, i didn't find a way for OR operator inside brackets like [id='name1||name2'], so not sure its even possible.