0

我正在尝试在我的网站上放置我的搜索按钮:http: //testowa.portalo.pl

使用 padding-left 似乎可以很好地定位它,但是左侧的空间(由 Google 提供支持)不应该用作超链接,实际上是一个大超链接。如何纠正这个?

<form method="get" action="search.php" target="_top">
<input type="text" id="Szukaj" style="margin-top:42px; width: 563px;" name="q" size="107" maxlength="155" value="Wyszukiwarka" onfocus="onfocus=clearDefault(this)"/>
<label style="display: none">Prześlij formularz wyszukiwania</label>
<input type="image" src="files/szukaj.gif" id="Szukaj_Button" style="padding-top:36px; padding-left:500px; position:absolute"/>     
<input type="hidden" name="cx" value="<?php include("ustawienia/google_search.inc.php");?>" />
<input type="hidden" name="forid" value="1" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="hidden" name="oe" value="UTF-8" />
<input type="hidden" name="cof" value="GALT:#CC0000;GL:1;DIV:#FFFFFF;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0066CC;LC:0066CC;T:333333;GFNT:0066CC;GIMP:0066CC;FORID:11" />
<input type="hidden" name="hl" value="pl" />
</form>
4

1 回答 1

1

不要使用padding-left,使用margin-left。填充添加到您正在设计的对象的内部。边距增加了外部。查看 CSS 框模型以更好地理解:http ://www.w3schools.com/css/css_boxmodel.asp

于 2012-04-30T12:48:09.263 回答