I have a div.xx-wrapper:hover in CSS which when hovered on, I want to call another 2 tags in the CSS which are div.slider-nav span.right:hover and div.slider-nav span.left:hover;
Basically I want that when the user hovers over the wrapper container, the CSS will interpret this as if the user has hovered over both the right and left slider buttons
There is no way to do this because it’s not logical, you cannot be hover div.slider-nav span.right and div.slider-nav span.left at the same time.
You should format your css in way that you will apply those two styles when you main div : div.xx-wrapper is hover
like this