你们可以让我知道什么是最好的方式来禁用水银滚动条?
我的div宽度为100%,高度为280px。当我们有很长的连续文本(没有任何空格)时,我们会显示一个水平的滚动条。
Btw我正在使用jscrollPane。
任何建议,将不胜感激。
解决方法
我在jScrollPane中找到的 – 设置对象文档:
contentWidth – int (default undefined)
The width of the content of the scroll pane. The default value of
undefined will allow jScrollPane to calculate the width of it’s
content. However,in some cases you will want to disable this (e.g. to
prevent horizontal scrolling or where the calculation of the size of
the content doesn’t return reliable results)
所以要摆脱水平条,只需设置内容宽度低于容器宽度。
例:
$('#element').jScrollPane({ contentWidth: '0px' });