我的 asp.net 按钮文本与右侧对齐。最后一个字符有一半是看不到的。
这是代码:
<table style="margin:0 auto;width:300px;">
<tr style="margin:0 auto;width:300px">
<td style="margin:0 auto;width:150px;">
<asp:Button ID="btnSaveAndClose" onClientClick="if(!timesValidation()) return false;" style="width:125px;height:44px;font-size:30px;text-align:left;" OnClick="btnSaveAndClose_Click" runat="server" Text="Save and close" />
</td>
<td style="margin:0 auto;width:150px;">
<asp:Button ID="btnSaveAndNew" onClientClick="if(!timesValidation()) return false;" style="width:150px;height:44px;font-size:30px;" OnClick="btnSaveAndNew_Click" runat="server" Text="Save and New" />
</td>
</tr>
</table>
我该如何解决?