Word Wrap is not working properly

I am trying to understand why the word wrap does not work properly on this page for the div class:

.gce-page-list 

http://metaphysicalerotica.com/events/

It seems like the theme has added the β€œpre” and β€œcode” tags, and if I remove the β€œpre” tag, everything will work fine, however I need a CSS fix to make word-wrap work correctly, and I can’t figure it out! I tried everything I could think of, any advice would be great!

0
source share
2 answers

Add this style to your stylesheet:

 pre, code{ white-space: pre-wrap; } 
+1
source

The easiest solution is for you to enter style.css and add this class to line 67 for "pre" and "code"

 word-wrap: break-word; 

So, the style will look like this:

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

Source: https://habr.com/ru/post/1235116/


All Articles