我基本上需要为我的输入类型文本使用精美的背景图像。
我有以下 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之外,这在其他浏览器上完美运行。
请就此提出建议。
答案 0 :(得分:1)
尝试使用此IE过滤器将图像缩放到它的容器:
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='/images/myimage.png',
sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='/images/myimage.png',
sizingMethod='scale')";