0

我使用了引导主题,在 IE 8/9 中没有显示标题背景图像(显示为黑色),但所有其他浏览器都正确显示

CSS:

.navbar-fixed-top { 
   background: url(http://i47.tinypic.com/15ed8ub.jpg) repeat-x;
}
.navbar-fixed-top .nav { 
   margin:12px 0 0 0; 
}
4

1 回答 1

0

问题(如果尝试将图像放入.brand容器中)是您需要为 IE 设置图像的尺寸。

例如:

.brand img{
  width:238px;
  height:50px;
  display:block;
}
于 2013-04-10T12:12:05.030 回答