Text overflowing it's max width when there's no spaces between words

Hey, i have a max-width set on two p tags. As demonstrated with the first tag, it wraps and doesn't overflow it's max-width when the words are separate. However as demonstrated on the second tag, if there's a really long word it doesn't wrap and it overflows. Could someone please explain why this occurs and if there's a way to fix it? Thanks in advance. https://codepen.io/deerCabin/pen/gOJbzWR
R
CodePen
text-overflow
...
2 Replies
ChooKing
ChooKing2mo ago
word-break: break-word;
word-break: break-word;
snxxwyy
snxxwyy2mo ago
thank you!