Home › Forums › CSS › Help with section element! › Reply To: Help with section element!
February 22, 2016 at 2:31 am
#238258
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.