elementUI在IE中的常见问题集合(持续更新)

1、IE上弹窗关闭时,会闪烁问题  (在全局加上下面样式)

// 防止在IE上弹窗关闭时抖动
.el-dialog__wrapper{
  &.dialog-fade-leave-active{
    -ms-animation:none !important;
  }
}

2、IE上打开弹窗,弹窗被遮罩层遮罩

在el-dialog标签上加上:append-to-body='true'

3、解决IE上表格气泡少数情况不出现问题(存在2-3个字符时,气泡不出现)

不出现气泡得,画了红线

.el-table .cell, .el-table th div{
  width:90%;
  padding-right:0;
}

4、滚动隐藏(火狐,谷歌,IE) 

.el-input__prefix::-webkit-scrollbar {
  display: none;
}

.el-input__prefix {
  //IE
  -ms-overflow-style: none;
  //firefox
  scrollbar-width: none;
}
发布了38 篇原创文章 · 获赞 40 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/CuiCui_web/article/details/103798818
今日推荐