Issue with the distance

Peter_1985 2,526 Reputation points
2022-07-20T02:53:01.307+00:00

Hi,
If the button and Text field is within the different TR TD pair, how to increase the distance between button and Text field below?

222449-image.png

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,188 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,272 questions
{count} votes

Accepted answer
  1. Dillon Silzer 54,646 Reputation points
    2022-07-20T03:26:31.317+00:00

    A simple fix is to add padding to the button's td element:

    <tr>  
      <td style="margin-top: 5px">  
         <asp:Button runat="serv.......  
      </td>  
    </tr>  
    

    Try this and see if it works. You can increase 5px to your liking.

    ------------------------------

    If this helps please mark as correct answer.

    0 comments No comments

0 additional answers

Sort by: Most helpful