I have the following HTML structure:
<div class="container">
<div class="list-wrapper">
<ul>
<li class="item-first">
</li>
</ul>
</div>
<div class="description-wrapper">
<div class="description-first"></div>
</div>
</div>
Is it possible to adjust the .description-first
opacity to 1
when hovering over .item-first
? Or is this only achievable through JS? Thank you for your assistance!