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.
如果单元格的文本太长,我想截断文本并在末尾添加三个点“...”(不换行)。问题是,我不能只在 XX 符号之后剪切 java 中的内容,因为 'i' 占用的空间比 'W' 少,这反过来看起来很傻。
我怎样才能用 CSS/java 实现这一点(如果可能没有 Java 脚本)?或者那不可能?
谢谢!
尝试 CSS:设置 amax-width并指定text-overflow:
max-width
text-overflow
text-overflow: ellipsis;