所以我在尋找這樣的:http://twitter.github.com/bootstrap/base-css.html#forms內聯形式.form-inline
Twitter的引導不正確的顯示
現在我的網頁上輸入看上去像有線他們沒有填充:
活生生的例子:在這裏: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文件!
您是否有任何自定義css影響您的輸入?這是很難調試只有看到HTML。一個鏈接到你的項目將是有益的。 – Jrod 2013-02-25 14:55:21
偉大的問題!這是一個jsbin鏈接,它重現了這個問題:http://jsbin.com/ariret/1/edit – GolfWolf 2013-02-25 14:59:42
@Jrod no,你可以在這裏看到:http://jsbin.com/ariret/1/edit thx w0lf – Uffo 2013-02-25 15:03:03