如何对齐c#中的标签和文本框
本文关键字:标签 文本 何对齐 对齐 | 更新日期: 2023-09-27 18:16:16
我需要给aspx文件设置样式。
有标签和文本框,但对齐方式不正确。
实际上我需要标签和文本框并排对齐,并有适当的间距。
<div class="col-md-12">
<p>
<asp:Label ID="Label1" runat="server" Text="Your Name : "></asp:Label>
<asp:TextBox ID="name" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="Label2" runat="server" Text="Your Email ID : "></asp:Label>
<asp:TextBox ID="email" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="Label3" runat="server" Text="Your Contact Number: "></asp:Label>
<asp:TextBox ID="mob" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="Label4" runat="server" Text="Select your subject : "></asp:Label>
<asp:TextBox ID="subject" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="label5" runat="server" Text="Your Message : "></asp:Label>
<asp:TextBox ID="message" runat="server" TextMode="MultiLine"></asp:TextBox>
</p>
<p>
<asp:Button ID="submitButton" runat="server" Text="Submit" />
<asp:Button ID="resetButton" runat="server" Text="Reset" />
</p>
</div>
<asp:TableRow>
<asp:TableCell Width="100px" Height="35px"><asp:Label></asp:Label></asp:TableCell>
<asp:TableCell><asp:TextBox></asp:TextBox></asp:TableCell>
</asp:TableRow>