diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-08-30 13:12:02 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-08-30 13:12:02 +0000 |
commit | 6f79420b8650c807a8c3f6c553d6bb9319139c8d (patch) | |
tree | eca7fe611a99e637fc3105d4ad60c1a106040729 | |
parent | 318cc3c07eaca04d319be841e9e3bac35d1ff9f5 (diff) |
WWW: Force word wrapping of the content to avoid horizontal scrolling.
This isn't perfect but avoids overlap of the menu and the content.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162903 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | www/menu.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/menu.css b/www/menu.css index 4a887b1907..bece0ad3dc 100644 --- a/www/menu.css +++ b/www/menu.css @@ -8,9 +8,9 @@ } [id=content] { /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */ - position:absolute; - left:29ex; + margin-left:29ex; padding-right:4ex; + word-wrap: break-word; } /**************/ |