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 ピクセルであると想定しています。これに対処する最善の方法は何ですか?