Asp.net文本框并排显示

时间:2018-10-09 12:27:11

标签: css asp.net css3 twitter-bootstrap-3 textbox

Two Textboxes side by side 大家好,我刚刚开始使用asp.net标签设计表单,并希望准确实现图像上的内容。谢谢家伙

1 个答案:

答案 0 :(得分:0)

如果我理解正确,这是您需要的代码:

<asp:TextBox runat="server"></asp:TextBox><asp:TextBox runat="server"></asp:TextBox>

和结果:

Result

添加一些样式使其更漂亮。

Blockquote

以下是带有标签的代码(您也可以使用asp标签):

<div style="display: inline-grid">
    <asp:TextBox  runat="server"></asp:TextBox><label>textbox1</label>
</div>
<div style="display: inline-grid">
    <asp:TextBox runat="server"></asp:TextBox><label>textbox2</label>
</div>

和结果:

Result 2

您也可以将样式放在CSS中。