I have this declaration:
.myClass td, .myClass tr, .myClass table, .myClass img {margin:0, padding:0;}
I do not want to repeat ".myClass", I would rather write it as something like below:
.myClass (td, tr, table, img) {margin:0, padding:0;}
I know the above is not correct, so how would I achieve this in correct syntax?