Bootstrap Dropdown在Internet Explorer中无法正确设置样式

Ka *_*ech 6 css twitter-bootstrap

我在我的角度项目中使用了twitter bootstrap类.对于下拉菜单,样式在Chrome中运行良好但是当我将其加载到IE 11时,它的样式不正确.特别是下拉箭头按钮.

有没有其他人与IE有这个问题?我该如何解决这个问题?请查看我的问题下面的比较照片.

在此输入图像描述

我的html部分也在下面,任何评论都欢迎提前感谢!

 <select class=" btn btn-default"  ng-options="obj for obj in data.finding"
                      ng-model="gapSection.finding"  >
                      <option value="">Please select</option>
</select>
Run Code Online (Sandbox Code Playgroud)

小智 0

Bootstrap 3 放弃了对 Internet Explorer 7 的支持,但您只需添加名为 bootstrap-ie7.css 的条件 CSS 即可重新添加它。

这是下载链接:: https://github.com/coliff/bootstrap-ie7

  • 不过作者谈论的是 IE11。 (2认同)