Hi,
I find background images more consistent in lists as there is no way to position list-images correctly cross browser. However it is the proper way to do it (if there is a proper way
),
I think the question above was about spacing in lists rather than images and all you need to really know is that some browsers use padding for the initial spacing of lists and some browsers use margin.
Therefore you need to control both. I usually set both to zero and then adjust the padding that I want.
Code:
ul, li {margin:0;padding:0}
li {margin-left:10px}
Something like that
have a play around with it until you see how its working. Lists can be a pain at times but are structurally sound and worth persevering with.
Paul
Bookmarks