What i want to do is when i hover the '#two' the hover changes apply on the '#one' i did it on vice-versa but i have no clue for the opposite. I have this code:
<html>
<head>
<style>
#one{
background-color: red;
width: 200px;
height: 200px;
}
#two {
background-color: #000;
width: 200px;
height:200px;
}
#one:hover + #two {
background-color: blue;
}
#two:hover #one {
}
</style>
</head>
<body>
<div id="one"></div>
<div id ="two"></div>
</body>
</html>