我使用过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;
}
答案 0 :(得分:0)
问题(如果尝试将图像放在.brand
容器中)是您需要为IE设置图像的尺寸。
例如:
.brand img{
width:238px;
height:50px;
display:block;
}