You can wrap your text in a container, give a css class for this container and aply a css:
.container {
width: 200px; *(you define width)
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}