Within my code, I have two sibling divs that contain additional nested divs as shown below:
<div class="btn_lists">
<div class="btn green_btn">
<img src="<?= asset_url() ?>images/escolar_07__1.png" />
</div>
</div>
<div class="btn-desc-container">
<div class="btn-desc_1">
<p>Description</p>
</div>
</div>
The initial status of btn-desc_1 is set to display: none; However, my goal is to have the display change to inline-block when hovering over green_btn.
Is there an efficient way to achieve this?