I recently encountered an issue while using CSS and HTML in my email to create a Drop Down List. After clicking on the Drop Down Button, the sublevels were not visible. Can someone please assist me in resolving this problem? Any help would be greatly appreciated. Thanks and Regards, Ramyashree
Check out the CSS-Inline code here
View the output of the code here
<div class="dropdown" style="position: relative;display: inline-block;">
<button class="dropbtn" style="padding: 16px;font-size: 16px;border: none;cursor: pointer;">Dropdown</button>
<div class="dropdown-content" style="display: none;position: absolute;min-width: 160px;box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);z-index: 1;">
<a href="#" style="color: black;padding: 12px 16px;text-decoration: none;display: block;">Yes</a>
<a href="#" style="color: black;padding: 12px 16px;text-decoration: none;display: block;">No</a>
</div>
</div>