For that matter, here's another option:
#test { border: 0; height: 0; width: 0; } #test:hover + a { color: red; }
<div class="parent"> <input id="test"><a class="solana" href="#">Интернет магазин Солана</a> <label for="test"> <a class="aroga" href="#">Интернет магазин Арога</a> </label> </div>
https://jsfiddle.net/482y1c53/
But better with the help of JS (well, or jQuery, as you prefer):
(function () { var aroga = document.querySelector('.sbmts_bl :nth-child(2)'); var solanaClassList = aroga.previousElementSibling.classList; aroga.addEventListener('mouseover', function () { solanaClassList.add('hightlight'); }); aroga.addEventListener('mouseout', function () { solanaClassList.remove('hightlight'); }); })();
.sbm_top_link:nth-child(2):hover + .sbm_top_link a { color: #222222; background: #333333; } .hightlight { color: red; }
<div class="sbmts_bl"> <a class="sbm_top_link fancybox" href="#">Интернет магазин Солана </a> <a class="sbm_top_link fancybox" href="#">Интернет магазин Арога</a> </div>
https://jsfiddle.net/pco94ys2/