Browse Source

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

pull/40/head
lolicon 9 years ago
parent
commit
e53ac3503e
  1. 3
      stylesheets/style.css

3
stylesheets/style.css

@ -319,7 +319,8 @@ div.delete [type="submit"] {
div.postcontainer div.postcontainer
{ {
display: inline-block; 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; max-width: 100%!important;
} }
div.post.reply p { div.post.reply p {

Loading…
Cancel
Save