Reputation: 25
I have a div and it has random whitespaces above and below it.
I've uploaded it to my host where you can clearly see this: I've tried to figure it out for hours.. no margins or paddings on footer/header. When I inspect the white space it directs me to "body". Didn't find any strange things under body.
It's probably a simple issue but.. how do I get rid of them?
Upvotes: 0
Views: 135
Reputation: 1521
As you can see when inspecting the HTML, there's a Zero width no-breaking space (
) above and underneath. You'll have to find them in your HTML markup and remove them.
https://puu.sh/ul26W/6f1c2b695f.png
Upvotes: 4