IE 6和IE 7对于按钮背景图案的处理 【转载】

该文转载自:http://hi.baidu.com/icewee/blog/item/871a7923a2595ea24623e84c.html

 

 

最近负责项目中的界面修改工作,遇到了一个奇怪的问题,代码如下:

.bg {
    background-attachment: fixed; /* 设定背景图不滚动 */
    font-size: 9pt; /* 设定字体 */
    background-image: url(space.gif); /* 设定背景图url */
    background-repeat: no-repeat; /* 设置背景图不平铺 */
    height: 19px; /* 等于背景图高度 */
    58px; /* 等于背景图宽度 */
    background-position: center center; /* 设定背景图居中 */
    border: none; /* 取消边框 */
   }

<input type="button" class="bg" value=" 提 交">

我的系统用的是IE6,现在大多数用户用的都是IE7。我的电脑显示为:

可同事的电脑上却显示:

 

解决方案: 将background-attachment: fixed; /* 设定背景图不滚动 */ 这一句去除掉

原文地址:https://www.cnblogs.com/chenxizhang/p/1413570.html