我正在尋找創建一個谷歌風格的中心搜索欄的簡單索引頁面,但我努力使Twitter Bootstrap看起來不錯。谷歌搜索欄twitter-bootstrap
搜索欄必須在搜索字段的末尾(右側)附加一個搜索圖標按鈕。由於我打算編寫一個下拉式搜索建議系統,因此我使用了typeahead。
<div class="hero-unit">
<div class="input-append">
<input type="text" data-provider="typeahead" class="input-large"
placeholder="What do you want to know?" autocomplete="off">
<button type="submit" class="btn-large btn-success">
<i class="icon-search"></i>
</button>
</div>
它也必須比標準的文本框大(高),該功能不是Twitter的引導的穩定版本尚未公佈,因此CSS我不得不將其投入的頂部頁。
<style>
input[class=input-large] {
width: 540px;
height: 24px;
margin-bottom: 10px;
margin-right: -7px;
line-height: 30px;
padding: 11px 19px;
font-size: 17.5px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
我能看到,讓搜索按鈕更接近搜索欄的唯一方法是使用陰性切緣(當您使用BTN-出現大的空隙)。不是我引以爲傲的東西,它看起來非常混亂。
我很感激這方面的一些指導。提前致謝。
嘗試使用'input-append'和'add-on';他們從字面上將按鈕和欄合併爲一個 – Amelia 2013-03-20 15:44:17