写了个前端界面发现每次有控件和wangEditor重合时都会被wangEditor覆盖掉,后来发现是因为wangEditor设置的z-index很大,所以会覆盖掉和他重合的区域,加入下面代码就行

.w-e-menu{
    z-index: 2 !important;
}
.w-e-text-container{
    z-index: 1 !important;
}

  

相关文章:

  • 2021-12-22
  • 2021-11-14
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2021-06-19
  • 2021-07-25
  • 2021-08-19
猜你喜欢
  • 2021-08-12
  • 2021-09-07
  • 2021-10-31
  • 2021-10-03
  • 2021-10-23
  • 2021-12-04
  • 2021-12-04
相关资源
相似解决方案