Inserted a class into
<td><span class="only-show-on-hover"></span></td>
CSS code for the class
td span.only-show-on-hover { visibility: hidden; } td:hover span.only-show-on-hover { visibility: visible; }
Code for dialog box
<div class="bg-white mpd-container brs-6 p-2 pl-4"><div class="d-flex"><div class="mpd-pic"><img width="50" class="mr-2 mt-2" src="assets/images/dummy-user.svg" alt="" /></div></div><div class="d-flex my-2"><div class="profile-completion">Completion will go here</div></div></div>
How to open a popup as shown in the image https://i.sstatic.net/BALZR.png
I attempted to add the dialog box, but it is displaying inside the td. I need it to appear as a popup like in the image.