1//Truncate text overflow
2.element {
3 white-space: nowrap;
4 overflow: hidden;
5 text-overflow: ellipsis;
6}
1{
2 width: 250px;
3 white-space: nowrap;
4 overflow: hidden;
5 text-overflow: ellipsis;
6}
1 width: 250px; //width has to be set to work
2 white-space: nowrap;
3 overflow: hidden;
4 text-overflow: ellipsis;