I have a CSS ruleset as follows:
#showM img, #showW img, #showF img {float:right;}
#showT img, #showU img {float:left;}
Is there a way to group the IDs to avoid repeating
img
after every single one? Something like
(#showM, #showW, #showF) img {float:right;}
(#showT, #showU) img {float:left;}