可能重複:
Textbox background image pushing out in IE 6 & IE 7Internet Explorer和CSS背景圖像不工作
我有一些CSS在Firefox,Chrome和其他瀏覽器工作正常,但其失敗在IE中呈現相同。
我在輸入字段上使用了這個CSS,並且它在所有瀏覽器中完美顯示 - 直到我在該字段中寫入。在Internet Explorer中,當我在字段末尾寫入時,背景會重複。這裏是我的代碼:
.web_contact_text
{
position:relative;
padding-left:10px;
padding-right:10px;
width:244px;
height:65px;
line-height:65px;
margin-left:auto;
margin-right:auto;
margin-bottom:-3px;
left:10px;
background:transparent;
background-image:url("imagenes/contactar/campo_back_text.png");
border:0px solid;
font-family:Arial;
font-size:18px;
color:#000000;
cursor:pointer;
cursor:hand;
}
<input type="text" name="contactar_nombre" class="web_contact_text" value="Insertar Nombre" title="Insertar Nombre" onclick="this.value=''">
BAD
確定在其他BROWNSERS
與背景圖像的問題it's時,您使用輸入字段,文本,當你寫入更多的這個輸入字段的大小時,這個東西只會在Internet Explorer中發生,當你寫入更多不尊重背景並且一直重複這個時候沒有修復背景不尊重
http://i40.tinypic.com/4vs187.png
哪個版本的IE? – ysrb
IE 8,背景圖像在輸入時寫入更多的字段寬度,視爲 –
您可以在這裏看到的問題:http://i40.tinypic.com/4vs187.png –