I want, when the first class hover, the second class's color is white.
<div class="diva">This is the first class</div>
<div class="divb">This is the second class</div>
<style>
.diva:hover .divb {
  color:#fff;
}
</style
but, this isn't work. How can I do this?
 
     
     
     
    