adding "word-break: break-word;" line 323 fixes text breaking out of its division.

This commit is contained in:
lolicon 2015-09-19 12:27:29 -05:00
parent f3c8f0248e
commit e53ac3503e

View File

@ -319,7 +319,8 @@ div.delete [type="submit"] {
div.postcontainer
{
display: inline-block;
white-space: nowrap;
white-space: nowrap; /* changed "nowrap" to */
word-break: break-word; /* bugfix: letters no longer shoot around the screen */
max-width: 100%!important;
}
div.post.reply p {