A JS library I am using is creating a new class every time I switch the page.
Something like:
.marquee0 .marquee1 .marquee2 .marquee3 .marquee4 .marquee5 .marquee6 ...
Is there a way I can minify this in my css for an infinite amount of numbers? At the moment I use this:
.marquee0, .marquee1, .marquee2, .marquee3, .marquee4, .marquee5, .marquee6 {
}
Thank you in advance!!