Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 js 文件有"bAutoWidth": false
"bAutoWidth": false
即使在此之后,只要列内有任何文本出现更多没有空格可换行。那个时候表格延伸到页面的右侧..
客户对查看 xScool 不感兴趣。有人可以在这个问题上帮助我吗..?先感谢您。
有一个用于溢出文本的 CSS 属性。您可以使用以下代码
p{ width:100%; overflow:hidden; height:20px; text-overflow:ellipsis; }
请注意:上面的 css 只是一个例子。在您的情况下,高度宽度可能会有所不同,但应该使用 text-overflow: ellipsis。