在IE6,7下輸入類型的表單控件輸入文字的時候,背景圖片會跟着一塊移動


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標題文檔</title>
<style>
.box{ width:100px;height:30px;border:1px solid red;background:yellow; background:url(ball.png) no-repeat;}
input{width:100px;height:30px;border:none;margin:0;padding:0; float:left; background:none;}
/*
在IE6,7下輸入類型的表單控件上下各有1px的間隙

解決辦法:給input加浮動

在IE6,7下輸入類型的表單控件加border:none;

解決辦法: 重置input的背景

在IE6,7下輸入類型的表單控件輸入文字的時候,背景圖片會跟着一塊移動

解決辦法: 把背景加給父級
*/
</style>
</head>
<body>
<div class="box">
<input type="text" />
</div>
</body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章