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: */
html> body 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..
Johannes Koch - 25 Jun 2008 16:28 GMT
maya schrieb:
> hi,
>
[quoted text clipped - 6 lines]
> /* FF: */
> html> body ul.headlines {margin-left:-20px; margin-top:0px; }
Did you try both margin-left _and_ padding-left for both ul _and_ li?

Signature
Johannes Koch
In te domine speravi; non confundar in aeternum.
(Te Deum, 4th cent.)
maya - 25 Jun 2008 16:50 GMT
> maya schrieb:
>> hi,
[quoted text clipped - 9 lines]
>
> Did you try both margin-left _and_ padding-left for both ul _and_ li?
actually this finally worked:
margin:7px 0px 15px 0px; padding:0px 0px 0px 20px;
looks decent in all three browsers, and didn't even have to do the
browser-specif hack....;)
thank you very much...
John Hosking - 25 Jun 2008 16:41 GMT
> 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
[quoted text clipped - 8 lines]
>
> 1) it looks diff in IE6 from IE7
Yes, because they're different browsers.
See http://msdn.microsoft.com/en-us/library/bb250496.aspx, especially
the "* HTML Filter" and ""html > body" child selector filter" sections.
> 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...
Look at both margin and padding.
> this is for a bulleted list in a fairly small space (approx 250 x 300..)
> so need to do very specific spacing..
And I hope you're aware that the text may overflow your 250px or 300px
space anyway.
HTH

Signature
John
Pondering the value of the UIP: http://improve-usenet.org/
Jonathan N. Little - 25 Jun 2008 21:02 GMT
> hi,
>
[quoted text clipped - 17 lines]
>
> 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.

Signature
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Bergamot - 25 Jun 2008 21:43 GMT
> ul.headlines { margin: 0 0 0 25px; padding: 0; }
>
> Will look the same in all above.
No, I'm afraid it won't. IE puts the list marker in the UL padding,
which you've just blown away.
http://www.bergamotus.ws/samples/cross-browser-bullet-lists.html

Signature
Berg
Ben C - 25 Jun 2008 22:00 GMT
>> ul.headlines { margin: 0 0 0 25px; padding: 0; }
>>
[quoted text clipped - 3 lines]
> which you've just blown away.
> http://www.bergamotus.ws/samples/cross-browser-bullet-lists.html
I don't know what IE does, but it shouldn't matter. The bullet is
supposed to be positioned a short distance from the left edge of the LI.
Either margin or padding on the UL should therefore result in some space
for the bullet, unless IE is so broken it positions the bullet relative
to the UL's left edge instead of relative to the LI's left edge.
The CSS 2.1 suggested default stylesheet has 40px left padding.
Bergamot - 25 Jun 2008 22:45 GMT
> I don't know what IE does, but it shouldn't matter.
Perhaps it shouldn't, but it does.
> Either margin or padding on the UL should therefore result in some space
> for the bullet,
Depending on the margin and padding values, there may be insufficient
space in IE. You'll end up with bullet markers disappearing altogether,
or cut off on the left edge. A disc marker looks like a half moon.
> unless IE is so broken it positions the bullet relative
> to the UL's left edge instead of relative to the LI's left edge.
And there you have it.

Signature
Berg
Jonathan N. Little - 26 Jun 2008 00:40 GMT
>> ul.headlines { margin: 0 0 0 25px; padding: 0; }
>>
[quoted text clipped - 3 lines]
> which you've just blown away.
> http://www.bergamotus.ws/samples/cross-browser-bullet-lists.html
Hmmm funny thing is I do not see it.
http://www.littleworksstudio.com/temp/usenet/liststyle.jpg
liststyle.jpg (JPEG Image, 708x858 pixels)

Signature
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Stanimir Stamenkov - 26 Jun 2008 12:50 GMT
Wed, 25 Jun 2008 11:23:22 -0400, /maya/:
> 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
[quoted text clipped - 4 lines]
> /* FF: */
> html> body ul.headlines {margin-left:-20px; margin-top:0px; }
Already answered, but described here, also:
Consistent List Indentation
<http://developer.mozilla.org/docs/Consistent_List_Indentation>

Signature
Stanimir
Jonathan N. Little - 26 Jun 2008 14:37 GMT
> Wed, 25 Jun 2008 11:23:22 -0400, /maya/:
>
[quoted text clipped - 11 lines]
> Consistent List Indentation
> <http://developer.mozilla.org/docs/Consistent_List_Indentation>
That confirms what I said, does matter which browser, just on rule is
need but be sure to set both padding and margin to get constancy. Use
margin for the indent if you do not want the background to extend under
the bullets, or padding if you do.

Signature
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com