Stacked div elements have a border on hover.
However, when hovering over a div, both the hovered div and its parent div get borders.
<div class="container">
<div class="button1">
<div class="button11">
<div class="button12"></div>
</div>
</div>
</div>
I am struggling to achieve the desired effect:
When hovering over a div, only that specific div should receive a border.
Thank you in advance for your help.