I have a simple set up but I am not sure when I hover over the second div how to target the fist div. Below is an example I can't get the second div to target the first div on hover. Any help would be great.
<div id="container">
<div id="one">Some text.</div>
<div id="two">Some more text.</div>
</div>
#container #two {
width: 50vw;
}
#container #two:hover {
width: 90vw;
}
#container #two:hover + #one {
width: 10vw;
}