我尝试调整 CSS 编码,但没有成功。我想要的东西:
- 边框半径为 5px 的搜索框
- 放大搜索图标而不让它消失
- 搜索框和搜索图标均匀地放置在 div 周围
HTML 代码:
<div class="search"
<div class="searchbox">
<form action="/search" method="get" class="search_form">
<input type="text" value="Search Blog..." class="search_text" name="q">
<input type="image" src="http://s25.postimg.org/d3fu892zz/search_button_without_text_md.png" height="20" width="20"class="button">
</form>
</div>
</div>
代码:
.search{position:fixed;
height:25px;
width:194px;
top:189px;
left:14px;
border:2px solid black;
background-color:black;
border-radius:10px;
padding-left:2px;
padding-bottom:4px;
opacity:.8;}