From c71d7b846fbf6720d7c4fc167d5b49edc5d3d9fc Mon Sep 17 00:00:00 2001 From: Jacob Haddon Date: Sun, 25 Oct 2020 16:51:44 -0400 Subject: [PATCH] added wordwrap to body tag for extra long words / titles --- style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/style.css b/style.css index 88f0742..2fb06fe 100644 --- a/style.css +++ b/style.css @@ -48,6 +48,7 @@ h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; + } q:before, q:after { content: ''; } @@ -69,6 +70,7 @@ a img { border: none; } body { font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif; + } @@ -114,6 +116,10 @@ body line-height: 1.3em; margin: 0; text-shadow: #fff 0 0 1px; + + /* for extra long words */ + -ms-word-wrap: break-word; + word-wrap: break-word; } div#wrapper