exhtml
5/18/2017 - 2:29 PM

Word wrap css / whitespace / evitar saltos de linea / truncate string ellipsis

Word wrap css / whitespace / evitar saltos de linea / truncate string ellipsis

.wordWrap {
  white-space: nowrap;
}

.ellipsis {
  display: inline-block;
  width: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}