maya wrote:
Quote:
hi,
>
I'm having a problem w/bulleted lists.. as you know FF and IE do diff
margins/spacing for these, so have to do stuff like
>
/* IE: */
* html ul.headlines {margin-left:20px; margin-top:0px; }
>
/* FF: */
htmlbody ul.headlines {margin-left:-20px; margin-top:0px; }
>
>
two problems:
>
1) it looks diff in IE6 from IE7
2) the browser-specific "hack" for some reason is not working here..
code meant only for FF is picked up by IE and vice-versa...
>
this is for a bulleted list in a fairly small space (approx 250 x 300..)
so need to do very specific spacing..
>
would appreciate suggestions.. thank you..
No hack required, just the understanding that browsers choose different
default settings for margin and padding on ULs to produce the indent so
explicitly set both properties top get constancy....
ul.headlines { margin: 0 0 0 25px; padding: 0; }
Will look the same in all above.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com