From 7e57aea19c4359bf821468201e7d8fdec6c98a7c Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sun, 19 Jun 2011 12:12:38 +0200 Subject: [PATCH] Force word-wrap in texts by breaking in words. Thanks, SeekingForAttention, for the suggestion. --- src/main/resources/static/css/sone.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/static/css/sone.css b/src/main/resources/static/css/sone.css index ae38d7d..1dda47e 100644 --- a/src/main/resources/static/css/sone.css +++ b/src/main/resources/static/css/sone.css @@ -268,6 +268,7 @@ textarea { #sone .post .text, #sone .post .raw-text { display: inline; white-space: pre-wrap; + word-wrap: break-word; } #sone .post .text.hidden, #sone .post .raw-text.hidden { -- 2.7.4