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.
我的 GWT 应用程序中有一个网格,其中有包含数据的列和行,如果每行/列的数据大小相同,则工作正常,但如果某些数据变大,我的网格的整个格式就会受到干扰。
附件是我的 GRID 的屏幕截图,是否有任何解决方案,比如我可以为更大的文本或任何其他方式创建工具提示。
您可以将文本溢出定义为省略号,因此列中的文本将被剪切。
text-overflow 声明允许您处理剪辑文本:即不适合其框的文本。省略号值会导致将三个句点附加到文本中。
.columnOverflow { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }