我试图通过设置text-align:center;
然后在英雄单位中居中水平形式display:block-inline;
有关演示,请参见 jsfiddle http://jsfiddle.net/bVJZ2/
但这并没有完全奏效,因为复选框和提交按钮不再正确对齐。任何建议如何解决这个问题?
我试图通过设置text-align:center;
然后在英雄单位中居中水平形式display:block-inline;
有关演示,请参见 jsfiddle http://jsfiddle.net/bVJZ2/
但这并没有完全奏效,因为复选框和提交按钮不再正确对齐。任何建议如何解决这个问题?
有一些问题不允许您将复选框居中。
<div class="controls">
有一个margin-left
。你不应该把你的复选框放在那个 div 里面。有input[checkbox]
一个float: left
. 您应该使用以下方法删除该浮动:
.radio input[type="radio"], .checkbox input[type="checkbox"] {
float: none;
}
vertical-align: top
到最后一个选择器。总结一下:
HTML:
<div class="control-group">
<label class="checkbox">
<input type="checkbox"> Remember me
</label>
<button type="submit" class="btn">Sign in</button>
</div>
CSS:
.radio input[type="radio"], .checkbox input[type="checkbox"] {
float: none;
vertical-align: top;
}
你可以在这里看到结果:http: //jsfiddle.net/GW8zk/
好吧,这就是你如何实现一个以中间为中心的形式的英雄单元的方法。
居中形式的 JSFiddle http://jsfiddle.net/shail/YmmVS/
首先是CSS:
.hero-unit {
padding:50px 50px 50px 50px;
}
.form-horizontal .control-label {
width: 61px;
}
.form-horizontal .controls {
margin-left: 80px;
}
/* Landscape phones and down */
@media (max-width: 480px) {
.hero-unit{
margin-left:-20px;
margin-right:-20px;
}
.form-horizontal .controls {
margin-left: 0;
}
}
Html 部分:
<div class="container">
<div class="hero-unit">
<div class="row-fluid">
<div class="offset4 span4">
<legend>Sign in to WebApp</legend>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="inputEmail">Email</label>
<div class="controls">
<input type="text" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputPassword">Password</label>
<div class="controls">
<input type="password" id="inputPassword" placeholder="Password">
</div>
</div>
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox">Remember me</label>
<button type="submit" class="btn">Sign in</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>