Home › Forums › JavaScript › how to change class of an element by click › Reply To: how to change class of an element by click
November 7, 2016 at 4:39 pm
#247616
Participant
It’s in the name… cascading style sheet. :-/
Some features will get preference over cascading classes:
- Unique identifiers (
id
) - Using the
important!
rule - Inline style
It is also actually possible to change the order in the stylesheet (with cssRules
) but this is very circumventive and not recommended.