1

Background size not set for only IE. Image showing its original size. Any one help me how to fix it?

CSS:

.menu_icon {
    background: url(../icons/Contacts_normal.png);
    background-size: 22px 22px; 
    background-position: left top;
    background-repeat: no-repeat;
    color: #999;
    font-size: 16px;
    height: 25px;
    line-height: 25px; 
    margin: 10px;
    padding: 0 5px 0 30px;
    text-align: left;
    position: relative;
    white-space: nowrap;
}

HTML:

<div class="menu_icon ui-corner-all"></div>
4

1 回答 1

-3

Internet Explorer 7 不支持background-size。唯一的选择是一些涉及使用<img>并将其定位在内容后面的骗局。

无论如何,您应该使用 IE7。您的计算机应该会告诉您更新。

于 2013-05-02T04:41:42.933 回答