Bootstrap IE background color issue

前端 未结 3 1124
情歌与酒
情歌与酒 2021-01-12 21:39

I can\'t seem to change the background color of my navbar in IE9. The site uses Twitter-Bootstrap

Here is the website: http://iioengine.com/

The top navbar h

3条回答
  •  [愿得一人]
    2021-01-12 22:32

    This is being caused by a MS filter gradient on .navbar-inverse .navbar-inner {}

    The solution is to override this with none in your own stylesheet:

    div.navbar-inverse .navbar-inner {
        filter: none;
        background-color: none;
    }
    

提交回复
热议问题