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

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

python - TypeError: can only concatenate tuple (not "float") to tuple -

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