IE 8/9不呈现标题背景图像

时间:2013-04-10 12:09:46

标签: css internet-explorer twitter-bootstrap

我使用过bootstrap主题,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; 
}

1 个答案:

答案 0 :(得分:0)

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

例如:

.brand img{
  width:238px;
  height:50px;
  display:block;
}