我選擇了a good css/html code來實現網絡上的搜索框。但我無法將搜索框移到中心位置。下面的CSS代碼是關於搜索框。將搜索框對齊到中間
#search {
width: 357px;
margin: 4px;
}
#search_text{
width: 297px;
padding: 15px 0 15px 20px;
font-size: 16px;
font-family: Montserrat, sans-serif;
border: 0 none;
height: 52px;
margin-right: 0;
color: white;
outline: none;
background: #1f7f5c;
float: left;
box-sizing: border-box;
transition: all 0.15s;
}
<li id="search">
<form action="" method="get">
<input type="text" name="search_text" id="search_text" placeholder="Search"/>
<input type="button" name="search_button" id="search_button"/>
</form>
</li>
我應該修正對準搜索框代碼?
謝謝。
發佈你的html以及 – mehulmpt
@MehulMohan我添加了我的html代碼。謝謝。 – Eric