Last Updated: February 25, 2016
·
736
· vdv73rus

Graceful text overflow

At layouts texts, particulary inserted via WYSIWYG-editors, there could be a very long words, which broken your layouts especially at responsive/adaptive design. So, there is a descision

.selector {
     overflow: hidden;
     text-overflow: ellipsis;
 }