html - Text overflow out of a panel in bootstrap -


the text inside div panel overflowing out of boundary unpredictably. can't seem find problem. can tell me why happening or how can permanently solve this? here's screenshot!

try using following css property.

the word-wrap css property used specify whether or not browser may break lines within words in order prevent overflow when otherwise unbreakable string long fit in containing box.

word-wrap:break-word; 

break-word indicates unbreakable words may broken @ arbitrary points if there no otherwise acceptable break points in line.


Comments

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

java - What is the difference between String. and String.this. ? -