Skip to content Skip to sidebar Skip to footer

Unable To Resolve Overflow Of Text In Angular4 And Html

I have a very large text and I am using a table to display the text. However, the text overflows. I have used all the attributes in text-overflow be it - { text-overflow: clip; }

Solution 1:

Instead of using overflow-wrap: break-word; use word-break: break-word; and provide max-height to outer div and keep overflow-y:auto. this may help you


Post a Comment for "Unable To Resolve Overflow Of Text In Angular4 And Html"