<div class="title">
  Most words are short & don't need to break. But then there are works like Floccinaucinihilipilification which are not so short.
</div>
.title {
  width: 250px;
  font-size: 20px;
  background-color: #eee;
  padding: 10px;
  
  /* css overflow handle properties */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.