Here is the document:
<div class="rate_num">...</div> <div class="rate">...</div>
How to make the rate_num class have a border when you hover on a rate class?
Made such type:
.rate a:hover .rate_num { border: 1px solid #ADBCCB; }
or
.rate a:hover ~ .rate_num { border: 1px solid #ADBCCB; }
But both options do not work.