我试图将表单控件置于我网站的中心,但由于某种原因,CSS 不适用于表单控件,但它适用于 div 中的所有其他内容......
这是我的 HTML:
<div id="search">
<h2 style="color:deepskyblue">Enter battle-tag</h2>
<div class="row">
<div class="col-md-12">
@using (Html.BeginForm())
{
@Html.TextBox("profileId", null, new { @class = "form-control" }); <br />
<p style="color:red">Replace the "#" in your battle-tag with an "-"</p>
<p style="color:red"> Search is Case-Sensitive </p>
<button class="btn btn-primary" type="submit"> Find Player </button>
}
</div>
</div>
</div>
这是我的 CSS:
body {
height: 100%;
width: 100%;
}
.body-content {
padding-left: 15px;
padding-right: 15px;
}
.dl-horizontal dt {
white-space: normal;
}
input,
select,
textarea {
max-width: 280px;
}
#search{
text-align:center;
margin-top:10%;
margin-left:10%;
}
显然 Bootstrap.css 是默认的,我根本没有碰过它。