NO BUG: Classes have no effect anymore

Hi @Rafael,

I was able to add classes to the same text element and got them to work:

The reason why your custom class “.99h-test2” doesn’t work is due to the fact that it starts with a number. That’s not a valid CSS class name:

  • A valid name should start with a letter (a-z)[A-Z] , an underscore (_), or a hyphen (-) which is followed by any numbers, hyphens, underscores, letters.
  • Cannot start with a digit, two hyphens or a hyphen followed by a number

https://medium.com/front-end-weekly/css-selector-for-element-which-have-numbers-as-class-name-b6a089989199