Forums

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

Home Forums CSS Relative-problem Reply To: Relative-problem

#248054
Shikkediel
Participant

Those look like browser default values, I usually do a reset at the start:

* {
  padding: 0;
  margin: 0;
}

But it’ll also work on the ul element alone of course.