Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help with section element! Reply To: Help with section element!

#238258
Paulie_D
Member

The body element has built in margin (usually about 8px).

Just reset it..either explicitly like:

body {
  margin: 0;
}

or a more common universal reset

* {
  margin: 0;
}

If you google “CSS Reset” you’ll find something like this is usually included.