0

The margin of an h2 element in my page is displacing the whole body down. This doesn't seem normal as the h2 element is contained in a div container.

How can I fix this ?

enter image description here

Lev
  • 13,856
  • 14
  • 52
  • 84

1 Answers1

-1

Put this at the top of your css file:

body{
 margin: 0;
 padding: 0;
{
Jeroen Smink
  • 179
  • 1
  • 10