0

我有一个输入背景图像的问题,在 IE8 中打开时似乎变得过大(这在 IE10 或 chrome 中不会发生)。

这是输入的代码:

<input class="search rounded" id="searchText" style="background: url(/cat/Images/search-icon-th.png) no-repeat 4% 50%; backgroundsize: 16px;" placeholder="Search" jQuery19107063960315369351="31"/>

以及显示 Chrome 和 IE8 之间差异的图像

http://img41.imageshack.us/img41/9963/q3cb.png

IE8 http://img268.imageshack.us/img268/5109/0z49.png

所以,我的问题是如何在 IE8 中修复这种行为?

提前致谢!

4

1 回答 1

0

请修复您的代码。

我会添加这样的东西:

HTML:

<img id="fix" src="ImageLink" />

CSS:

#fix {
width: 100%;
height: 100;
}

这应该使您的图像成为用户网页的大小。

于 2013-08-23T22:31:06.783 回答