需要拉伸输入标签上使用的图像,以便它可以在IE7和& IE8

时间:2013-06-24 10:27:20

标签: html css internet-explorer-8 internet-explorer-7

我基本上需要为我的输入类型文本使用精美的背景图像。

我有以下 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之外,这在其他浏览器上完美运行。

请就此提出建议。

1 个答案:

答案 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')";