出于某种原因,我在 IE 7 和 IE8 中显示背景图像时遇到问题。在 IE9 和更现代的浏览器中,它可以工作并输出以下内容:
(CSS 在 Login 周围生成灰色边框元素)
但是在 IE7 和 IE8 中,我得到的只是以下内容:
我不记得与我制作的交叉兼容的其他网站有这个问题,但我现在再次尝试避免使用图像来节省页面加载时间。
我的CSS如下:
#contentright .panel {
background-image: url("/incl/images/bg_panel200.gif");
background-repeat: no-repeat;
}
#contentright .panelbottom {
background-image: url("/incl/images/bg_panelbottom200.gif");
background-position: center top;
background-repeat: no-repeat;
}
我做了一个快速的谷歌搜索,一些以前的 Stack Overflow 答案建议将 CSS 修改为以下格式:
background: url('/incl/images/bg_panelbottom200.gif') no-repeat center top;
但是,这似乎也不起作用。
提前致谢。