I know that some relevant questions exist but none of them really has an answer more than saying that it is not possible. What I would like to achieve is having a dropdown button inside of an anchor tag so that user can be redirected on click but also has a possibility to interact with the button itself since it is a multiple-choice dropdown. Right now, once the user clicks on the button, the anchor tag redirects the user without having any effect on the button.
Just to give you an idea of what the code looks like, here is the minimal reproduction:
<a href="some_location">
<span>Some text</span>
<div>
<button>My Dropdown button</button>
</div>
</a>