How to "get rid" of the vertical space between divs?

2

I would like to leave every piece of my website stuck to each other, each in a different color. But I can not get rid of the whitespace that remain between the divs. I have already tried to remove the code space and apply font-size: 0 (tips I saw on the internet) but it did not work. The two separate background color divs should be stuck together, here: link

    
asked by anonymous 09.03.2016 / 00:51

2 answers

3

The p and h2 tags are causing the problem. If you add the code below in your , you'll notice that the spaces will be removed.

p, h2 {
  margin: 0;
} 
    
09.03.2016 / 01:12
1

Try resetting your projects something like this:

* {
  margin: 0;
  padding: 0;
}

solve your problem. If you would like to learn more about css-resets, read this article: link

    
17.03.2016 / 21:37