要素からはみ出したテキストの表示方法を指定するプロパティです。ellipsis(...)で省略表示したり、clip(切り取り)したりできます。white-space: nowrapやoverflowと組み合わせて使用します。
text-overflow: clip | ellipsis | <string>.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}長いテキストを「...」で省略表示
text-overflow: '→';カスタム文字で省略表示
white-space: nowrapとoverflow: hiddenとセットで使用。
IE6+, 全モダンブラウザ