Link: http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_text-overflow

 

div{
        white-space: nowrap;
        text-overflow: ellipsis; 
}

 

.truncate {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}