我正在使用 ASP.net 框架。我正在使用 .aspx 文件的设计视图构建 Web 表单。我做了一个很简单的表格,下面是.aspx文件中的代码。
<asp:TextBox ID="TextBox3" runat="server" Height="60px" Width="550px" TextMode="MultiLine"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Height="60px" Text="Button" Width="100px"/>
<asp:Button ID="Button2" runat="server" Height="60px" Text="Button" Width="100px" />
问题是当我将 TextMode 设置为 MultiLine 时,按钮的位置也会发生变化。文本模式设置为单行:
文本模式设置为多行:
对此有何解释?