How to adjust text to fit in container without overflow:auto… after many googling I found there is many plugin who deal with this problem but they reduce text size… I don’t want that thing.. if Text width is large(e.g. any Url). remaining part of word should go in next line
How to adjust text to fit in container without overflow:auto… after many googling I
Share
Try using css rule
word-wrap: break-word;with anoverflow: hidden;to avoid scrollbars.Also the width of the container should be set.