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