Vanguger,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.vclass {
background-color: hsla(0, 100%, 50%, 1);
}
.vclass > *{
background-color: hsla(0, 0%, 100%, 1);
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$('*').mouseover(
function(event) {
event.stopPropagation();
$(this).addClass('vclass');
}).mouseout(
function(event){
event.stopPropagation();
$(this).removeClass('vclass');
});
});
</script>
</head>
<body>
<div> test
<div>test</div>
<p>test</p>
<div>test
<div>test</div>
</div>
</div>
</body>
</html>