嘗試使用HTML格式化字段。 我有以下:輸入字段長於其包含的表單元格(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個像素;處理這個問題的最好方法是什麼?
這不是html。它有一些asp.net控件。你能告訴我們結果html嗎? –