What's the big gap halfway down my page?

My page is here . The section that I will cover begins with CANVAS FINE ART WRAPS, you will notice that there is a big gap between the first and second paragraphs. I looked at it on chrome (osx), safari (osx) and firefox (windows)

There is nothing in the markup to suggest a reason for this. Inspecting this does not show any field or anything causing it. enter image description here

+4
source share
4 answers

Wordpress seems to be sticking into something that shouldn't be. My suggestion would be:

  • Go to html view
  • Cut all code
  • Paste it in a notebook
  • Save page as completely blank
  • Copy the elements one by one into your html view and save.
+3
source

Add display: inline-block; to the .box p selector. It should work after that.

+2
source

p has a margin that should be reduced

the box class should reduce its row height.

change

In addition, I edited your text: 1111 and 2222, and everything was fine

you probably inserted text containing some bad characters

+1
source

The main problem that I see is on line 199/200 of your normalise.css file:

he has:

 p, pre { margin: 1em 0; } 

If I remove this, a large space will be deleted.

0
source

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


All Articles