How To trigger Some Element With Css While Hovering On Another One....
I have Tried Nesting But Its Not Working Code Is Below...... <div id ="wrap"> <div id ="king" ></div> <div id ="queen"></div> <div id ="army_general"></div> <div id ="kings_advisor"></div> <div id="best_assassinator"></div> <div id = "side"></div> </div> #side:hover{ background-color: black; /* opacity: 0.2; */ width: 1000px; font-size: 60px; } #wrap:hover #side{ background-color: black; opacity: 0.2; width: 1000px; font-size: 60px; } I want To Trigger Side Only Whenever I hover any of these.....