The spans below all have 25px left/right padding.
Spans without normal white-space handling wrap ok.
span one
span two
span three
span four
Now with white-space: nowrap. When rendered by IE6 (strict mode) a span that
gets wrapped to the next line loses its padding-left.
span one
span two
span three
span four
The whole line can wrap and lose left padding on the first span if there is
trailing whitespace in each span. For some reason IE6 connects this whitespace
with nowrap into the next span (even though the whitespace between spans
allows wrapping in other browsers).
span one
span two
span three
span four
The problems disappear for spans if they use display: inline-block.
span one
span two
span three
span four
This does not work for list items.
- li nr one
- li nr two
- li nr three
- li nr four