浏览器:IE
当我点击jquery-easyui的标签时,总是在右边滚动。jquery-easyui没有提供一个合适的方法来解决这个问题。请给我一些建议,谢谢。
发布于 2020-09-16 12:27:26
我找到了解决方案。Here is the soluction source
其原理是通过声明本地css覆盖jquery-easyui css
下面是来自前面提到的链接的代码片段。
<style type="text/css">
/* Remove the right scroll bar easyui tabs */
#tabs .tabs-panels>.panel>.panel-body {
overflow: hidden;
}
</style>https://stackoverflow.com/questions/63912255
复制相似问题