here is the question:
<div class="dep-wrap">
<div class="dep">
<div class="dim"></div>
</div>
<div class="dep">
<div class="dim"></div>
</div>
<div class="dep">
<div class="dim"></div>
</div>
</div>
Initially all dim
s are hidden, when I hover any dep
div I need to make sure its child dim
remains hidden and show all other dim
s. Is it possible to do with pure CSS with this HTML structure or if there are mode elements between dep
and dim
?
Thank you.