To achieve this effect, you'll need to incorporate some Javascript code. Here's an example:
document.body.addEventListener('mouseover', function(event) {
if (event.target.classList.contains('hov')) {
[].forEach.call(document.getElementsByClassName('hov'), function(elem) {
elem.classList.add('hover');
});
}
});
document.body.addEventListener('mouseout', function(event) {
if (event.target.classList.contains('hov')) {
[].forEach.call(document.getElementsByClassName('hov'), function(elem) {
elem.classList.remove('hover');
});
}
});
Additionally, make sure to define a css class named hover
that specifies the styling details for this interaction.
Check out this live demo: http://jsfiddle.net/1LkfbcLx/