gpt4 book ai didi

CSS 背景图片在 IE6 和 IE7 中不一致

转载 作者:太空宇宙 更新时间:2023-11-04 00:32:26 25 4
gpt4 key购买 nike

我有一个通过 javascript 生成的跨度,其 css 类如下:

.class1{  
width:25px;
height:25px;
background-image: url(pic.png);
background-repeat:no-repeat;
background-position: center;
cursor:pointer;
margin-left:10px;
}

问题出在 html 页面上,我可以在 IE7 中看到指针光标,但看不到背景图像。

在 IE6 中,两者都显示,没问题。

最佳答案

Span,顾名思义,就是一个内联元素,试试在.class1中加入display:block;或者display:inline-block; .同时添加图像的 heightwidth

像这样:

.class1{  
width:25px;
height:25px;
background-image: url(pic.png);
background-repeat:no-repeat;
background-position: center;
cursor:pointer;
margin-left:10px;

display:block; /*or inline-block*/
height:100px;
width:100px; /*img height and width*/
}

关于CSS 背景图片在 IE6 和 IE7 中不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2652653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com