gpt4 book ai didi

html - 无法在 Bootstrap 3 中将标签与文本框居中对齐

转载 作者:太空宇宙 更新时间:2023-11-04 10:17:55 24 4
gpt4 key购买 nike

我正在和我的 friend 一起创建一个网站。目前我们正在创建一个联系人页面,但我无法将标签与输入框对齐。

http://imgur.com/qan9PpG

我的 ASP.net 代码:

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<title>Contact</title>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="PageContent" runat="server">
<div style="background-color: white; height: 750px;" class="container" id="contact-page">

<label for="InputFullName">Full Name</label>
<input type="text" class="form-control" id="InputFullName" placeholder="Full Name"/>


<label for="InputEmail">Email address</label>
<input type="email" class="form-control" id="InputEmai" placeholder="Example@example.com"/>


<label for="InputSubject">Subject</label>
<input type="text" class="form-control" id="InputSubject" placeholder="Subject"/>


<label for="InputDescription">Description</label>
<input type="text" class="form-control" id="InputDescription" placeholder="Description"/>

<div class="form-actions">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>

</asp:Content>

链接到该页面的我的 CSS 文件:

/* Contact Page start */

#contact-page input {
display: block;
width: 450px;
float: none;
margin: 0 auto;
background-color: white;
}

#contact-page .btn btn-default {
float: none;
margin: 0 auto;
}

#contact-page #InputDescription {
height:250px
}

#contact-page label {
display: inline-block;
vertical-align: middle;
float: none;
}

/* Contact Page end */

我正在使用 bootstrap 3。

最佳答案

您可以改用文本表单吗?

           <textarea name="message" rows="10" cols="30">
Description
</textarea>

关于html - 无法在 Bootstrap 3 中将标签与文本框居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37086282/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com