CSS alle IDs beginnen mit
[id^="product"] {
...
}
Sparkling Seahorse
[id^="product"] {
...
}
/*
This will select all div elements with an ID
starting with my-id- using [arrtibute^=value]
*/
div[id^="my-id-"] {
/* add styles here */
}
[id^=product]