所以我正在寻找:http://twitter.github.com/bootstrap/base-css.html#forms内联表单.form-inline
现在在我的页面上,输入看起来像是没有填充:
实例:此处:http://jsbin.com/ariret/1/edit
这是我的代码:
<div class="navbar">
<div class="navbar-inner">
<form class="form-inline" action="<?php echo $this->baseUrl('login'); ?>" id="form-login" method="post">
<input type="text" class="input-small" id="email" name="email-login" placeholder="<?=$this->translate('Email');?>">
<input type="password" class="input-small" id="password" name="password-login" placeholder="<?=$this->translate('Password');?>">
<label class="checkbox">
<input type="checkbox" name="keep-logged" value="1" id="check-logged"> <?=$this->translate('Remember me'); ?>
</label>
<input type="hidden" name="login_type" value="normal" />
<button type="submit" class="btn"><?=$this->translate('Login');?></button>
</form>
</div><!-- end navbar-iner -->
</div><!-- end navbar -->
以下是它的样子:
它需要与登录按钮具有相同的高度。
我的页面上有css和js文件!
答案 0 :(得分:4)
这似乎是Bootstrap的JSbin错误。其他测试站点(和本地主机)显示这可以按预期工作。
Bootstrap将输入字段的高度设置为20px,但尚未应用。答案不明确,但您可以随时前往https://github.com/remy/jsbin/issues/new并提交新问题。
答案 1 :(得分:1)
“它需要与登录按钮具有相同的高度。我的页面上包含css和js文件!”
<button type="submit" class="btn btn-primary btn-mini">login</button>
会将按钮的高度降低到(几乎)输入的高度
如果你想增加输入的高度来对齐按钮,我建议你在本地覆盖css
<style type="text/css">
.form-inline .input-small {
height: 30px;
margin-top: 3px;
}
</style>
两个“解决方案”都适用于jsbin示例 - http://jsbin.com/ariret/4/edit
答案 2 :(得分:0)
您可以创建以下方式:
Jsfiddle Working inline bootstrap form
中的结果<div class="navbar">
<div class="navbar-inner">
<div class="container-fluid">
<div class="nav row-fluid">
<form class="form-inline pull-right">
<input type="text" placeholder="email or username" />
<input type="password" placeholder="password" />
<label class="checkbox">
<input type="checkbox" name="keep-logged" value="1" id="check-logged"> <?=$this->translate('Remember me'); ?>
</label>
<input type="hidden" name="login_type" value="normal" />
<button type="submit" class="btn">login</button>
</form>
</div>
</div>
</div>
</div>