<input type="text" name="" id="" value="請輸入..." />
<input type="button" name="" id="" value="" />
正常這樣寫的話兩個input之間會有一個空隙
解決方法只要把兩個input接連寫完,不要有空格就可以了
<input type="text" name="" id="" value="請輸入..." /><input type="button" name="" id="" value="" />