给定字符串:
Some really long string that I need to fit in there!
固定宽度列中的所需输出应为:
Some really long string...
.Box { -o-text-overflow: ellipsis; /* Opera */ text-overflow: ellipsis; /* IE,Safari (WebKit) */ overflow:hidden; /* don't show excess chars */ white-space:nowrap; /* force single line */ width: 300px; /* fixed width */ }
注意:您需要检查最新的浏览器支持。