css – Bootstrap Dropdown在Internet Explorer中未正确设置样式

前端之家收集整理的这篇文章主要介绍了css – Bootstrap Dropdown在Internet Explorer中未正确设置样式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的角度项目中使用了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>

解决方法

我刚用IE解决了:
select::-ms-expand {
    border:none;
    background:#fff;
}

Source

原文链接:https://www.f2er.com/css/242392.html

猜你在找的CSS相关文章