I am facing an issue - I'm attempting to make image hover affect another hover
<img id="1" src="#" />
<img id="2" src="#" />
#1 {width:20%;
opacity:0.5
}
#2 {width:80%;
position:absolute;
display:none;
}
I have experimented with the following
#1:hover + #2{
display:block;
}
#1:hover #2{
display:block;
}
I have also tried placing it within different divs but unfortunately, it is still not working. Can anyone provide assistance?