Word Wrap not working properly

2019-09-06 17:47发布

问题:

I'm trying to figure out why the word wrap is not working properly on this page for the div class:

.gce-page-list

http://metaphysicalerotica.com/events/

It looks like the theme has added a "pre" and "code" tag and if I delete the "pre" tag everything works fine, however I need a CSS fix to make the word-wrap work properly and I can't figure this out! I have tried everything I can think of, any advice would be great!

回答1:

Add this style to your style sheet:

pre, code{ white-space: pre-wrap; }


回答2:

The easiest solution would be for you to go in you style.css and add this class to line 67 for the "pre" and "code"

word-wrap: break-word;

So the style would look like this...

pre, code {
   font-family: Courier New, monospace;
   margin-bottom: 10px;
   word-wrap: break-word;
}