0
我有一個像下面這樣的搜索框,我使用bootstrap來給出一個靈活的佈局。如何使用下面的設計,並確保我可以得到一個可拉伸的搜索框。帶背景圖形的搜索欄
我有一個像下面這樣的搜索框,我使用bootstrap來給出一個靈活的佈局。如何使用下面的設計,並確保我可以得到一個可拉伸的搜索框。帶背景圖形的搜索欄
你需要一個容器,把你的輸入框,並把前和結束的div它。根據瀏覽器的兼容性,您可能需要添加更多的div,以確保您的輸入框在IEX7/8等瀏覽器中正確顯示。
所以你具備以下條件:
<form class="searchbox">
<input type="text" class="text" />
<input type="submit" class="submit" />
</form>
通過下面的例子CSS
form.searchbox { background:url(leftside_image.gif) 0 0 no-repeat; padding-left:15px; }
form.searchbox input.text { border:none; border-top:1px solid #999; border-bottom:1px solid #999; height:25px; line-height:25px; padding:0 5px; }
form.searchbox input.submit { background:url(rightside_image.gif); }
陪同添加您的HTML部分這樣
<div class="searchbox">
<input class="lightsearch" type="text" name="s" onfocus="doClear(this)" value="">
</div>
CSS部分,下載搜索框圖像並用名稱替換它
.searchbox input.lightsearch {
background: url("images/lightsearch.png") no-repeat scroll 0 0 transparent;
border: 0 none;
color: #575757;
font-size: 11px;
height: 19px;
margin-top: 24px;
padding: 2px 5px 2px 24px;
width: 170px;
}
向我們展示您的代碼「搜索框」 –