Despite trying various solutions found in similar questions, I am still facing the same issue.
I have two HTML controls - an anchor tag and an input button.
I have attempted using vertical-align: top;, float: right;, display: inline-block; both independently and together, but with no success.
After clicking on Close, I noticed that a shadow appears like a button. I want both controls to be displayed inline.
At the end of the table, I added a Div like this:
<div style="float:right;">
<asp:Button ID="btnInput" runat="server" Text="Add selected"></asp:Button><a href="#">Close</a>
</div>