Firefox中没有显示背景图像

时间:2010-06-17 13:13:54

标签: html css firefox

奇怪的事情发生了。在某些版本的WindowsXP和Windows Vista下,Firefox中不显示背景图像,而是在Mac OSX下的Firefox中显示。它也显示在IE中。 这是CSS:

.cherry_banner {
background: url("library/media/images/cherry_banner_top.png") no-repeat;
width: 276px;
display:block;
min-height:100px;
padding-top: 13px;
color: #fdfdfd;
margin-bottom:20px;
}

.cherry_banner a {
color: #fdfdfd;
}

.cherry_banner a:hover {
text-decoration:underline;
}

.cherry_banner li {
list-style-type:none;
}

.cherry_banner h2 {
font-size: 18px;
margin-bottom: 10px;
}

.chb_text1 {
background: url("library/media/images/cherry_banner_pixel.png") repeat-y;
}

.chb_text2 {
background: url("library/media/images/cherry_banner_bottom.gif") bottom no-repeat;
padding: 4px 14px 24px 25px;
}

这是html:

<div id="linkcat-8" class="cherry_banner tpt"><div class="chb_text1"><div class="chb_text2">
<h2>Для москвичей</h2>
<ul class='xoxo blogroll'>
<li><a href="http://inveda.ru/jyotish/naksatra-calendar/">Закажите бесплатный индивидуальный календарь благоприятных дат на 2010г.</a></li>
</ul>
</div></div></div>

您可以在http://www.inveda.ru - 右栏 - 红色横幅上看到。

2 个答案:

答案 0 :(得分:1)

您的代码有效,是的,我可以正确看到背景。 (FF,IE6-9,Safari,Opera,Chrome)

我认为这是一个浏览器缓存问题(旧的CSS仍然存在于您的XP机器上)。如果要在不同的浏览器/ PC上预览页面,请确保按Ctrl + F5。

答案 1 :(得分:0)

尝试将颜色设置为透明并删除网址中的引号:

background: transparent url(library/media/images/cherry_banner_top.png) no-repeat;