Ellipsis/Break-word text with no spaces overflowing container width

This works well for multiple lines

 width: 260px; word-wrap: break-word;

This is only really good for single line:

  width: 260px;  white-space: nowrap;  overflow: hidden;  text-overflow: ellipsis;