A. 求有啊搜索框的網頁代碼
我看了沒有 給我分吧
B. 搜索框的代碼怎麼寫
首先把搜索寬切片下來再CSS樣式裡面用為背景
<body>
<form action="" method="get">
<div class="kuan"><input name="" type="text" /></div><!--搜索框-->
<div class="an"><input name="" type="button" /></div><!--搜索按鈕-->
</form>
</body>
CSS樣式根據實際自己調整
<style type="text/css">
.kuan input{ width:330px; height:60px; background:background:url(../img/kuan_01.jpg) no-repeat; border:none; float:left}
.an input{ width:120px; height:60px; background:background:url(../img/an_02.jpg) no-repeat;border:none; float:left}
</style>
C. 用dreamweaver做網頁如何用代碼設置搜索框的大小和樣式(主要是輸入文本框的高度
文本框的高度可以由裡面字體的大小來決定的。
比如你要設置文本框的高度16px,你就可以設置文本框內的字體font-size為16px(實際上文本框會比字體大一些)。然後有些為了效果更好看點,你可以在文本框內加上個內邊距,如2px,這樣字就不會緊挨著文本框了,望採納!