Can anyone tell me why an unordered list has a default indent/padding applied to it? Can this be solved with a CSS Browser Reset?
It has a default indent/padding so that the bullets will not end up outside the list itself.
A CSS reset might or might not contain rules to reset the list, that would depend on which one you use.
Typical default display properties for ul
ul {
display: block;
list-style-type: disc;
margin-before: 1em;
margin-after: 1em;
margin-start: 0;
margin-end: 0;
padding-start: 40px;
}