This is a handy tip not many know about, yet it is very simple. When starting to learn CSS you learn about classes and how you can use many classes on an HTML element. Here comes the cool part, you can also use CSS selectors to match an element with more than one class. Consider the following code:
With the following CSS:
Let's say you want to change the background image position depending on the state of the toggler. The state can be enabled or disabled or hidden. These are common class names so using a selector like .enabled is not very good practice. The solution is to look for both classes (e.g. toggle and enabled). You do this by writing both classes without a space in between. For example:
This technique can prove very useful in many situations. Specially when styling dynamic content. Note that it also works with ids. For example the following selector matches an element with the id wonderwoman and the class plane:

@Joel Strange. Did you double check and made sure it's not a cache issue?
Didn't work for me. FF7, Chrome nor IE9.