emphasized text I am just studying and i want to create 100 css class dynamically
I want to do something like
for (i=0; i<100; i++) {
// create css class
const newBackgroundColor = dynamicBackgroundColor();
const height = '100%';
const width = '0%';
// add all 3 attribute to newly created css
}
// and then down the road, I want to use these 100 css class to 100 dynamically created div