I have a set of divs all with the same class (they don\'t have to have the same class if it makes this easier). Ideally what I want is when a user hovers over one of these divs
Using :not CSS3 selector
:not
div.box:not(:hover) { ... }
if is this what you mean...