The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Home › Forums › CSS › White border around DIVs › Re: White border around DIVs
Negative margins should be avoided at all costs!
Instead of using just the html and body on your reset, change it to:
* { margin: 0; padding: 0; }
Then go from there.