I want to name a CSS class and call it imgSuper. Can I use camelCasing in CSS classes?
Yes, class names are case sensitive, so that works fine.
However, you should be aware that some browsers get this wrong, and don't treat class names as case sensitive. Therefore you should avoid using both the upper and lower case variations of the same name. The classes imgSuper and imgsuper may be treated as the same by some browsers.