嗨,我希望表单宽度为 100%。我希望文本框几乎可以扩展整个页面的宽度,并且在文本框的右侧有一个小的“GO”按钮,所有这些都在同一行(或块)上。
现在我的文本框只有其中文本的宽度(“在此处输入地址”)谢谢!
CSS
#search1{
height: 25px;
padding:5px;
padding-left:11px;
display:inline-block;
background-color:#62564A;
width:100%;
}
HTML
<div id="search1">
<form style="margin: 0px; padding: 0px;" name="search_form" action="view" method="get" onsubmit="codeAddress(); return false">
<input id="address" style="color:#333" value="Enter an address here" onfocus="if(this.value==this.defaultValue) this.value='';"/>
<input type="button" value="GO" onclick="codeAddress()"/>
</form>
</div>