我在表中使用下面的代码:
<tr> <td>User Language:</td> <td> <asp:DropDownList ID="Language" runat="server" Width="200px"> <asp:ListItem Selected="True">English</asp:ListItem> </asp:DropDownList> </td> </tr> <tr> <td><span class="important">*</span>Company:</td> <td><asp:TextBox ID="Company" runat="server" width="200px" /></td> </tr>
当代码出现在站点上时,< asp:TextBox>控件是205px,< asp:DropDownList>宽200像素是什么原因造成的?它们都设置为200px的宽度.
解决方法
因为文本框具有2px的边框和1px的padding两边.