我基本上需要为我的输入类型文本使用精美的背景图像。
我有以下HTML
<form id="search" class="" autocomplete="off">
<div>
<input type="text" placeholder="" class="myclass" name="q" />
</div>
</form>
这是我的CSS
#search .myclass {
font-family: arial;
height: 30px;
width:100%;
min-width:100px;
font-size: 14px;
background-image: url('/images/myimage.png');
background-size: 100% 100%;
background-repeat:no-repeat;
}
现在这在除 IE7 和 IE8 之外的其他浏览器上完美运行。
请就此提出建议。