尝试使用 HTML 格式化字段。我有以下内容:
<table style="width: 100%;" cellpadding="0px" cellspacing="0px">
<tr>
<td style="width: 65px;">
<asp:Label ID="lblKeywords" runat="server" Text="Keywords"
AssociatedControlID="txtKeywords" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtKeywords" Width="100%" runat="server"
MaxLength="256" placeholder="Use comma to seperate keywords." />
</td>
</tr>
</table>
检查结果,文本框txtKeywords
比其单元格长 4 个像素。
我假设那些是边框的 4 个像素;处理这个问题的最佳方法是什么?