<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;
  
  /* css overflow handle properties */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.