我正在使用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时,按钮的位置也会发生变化。 Textmode设置为单行:
Textmode设置为多行:
对此有何解释?