1. 程式人生 > >關於html中input元件間空隙的去除

關於html中input元件間空隙的去除

  有空隙的時候的程式碼是這樣的:

<input type="text" name="search" title="請輸入要搜尋的內容" style="width:537px;">
<input type="submit" value="百度一下"style="background-color:rgb(49, 126, 243);width:104px;color:white;">

  這樣的話兩個元件中間是有一點兒空隙的

  變成這樣則沒有空隙

<input type="text" name="search" title="請輸入要搜尋的內容" style="width:537px;"><input type="submit" value="百度一下"style="background-color:rgb(49, 126, 243);width:104px;color:white;">

  也就是寫在一行,別問我為什麼,我也不知道為什麼-_-|||

  希望對大家有所幫助

 

  以上