Re: [css-d] List bullet sizes

2009-07-09 Thread tedd
At 5:50 PM -0400 7/7/09, tedd wrote: At 5:00 PM -0400 7/7/09, Stephen Tang wrote: Hi, I have a site that was using list-style-type: disc for a list bullet. The QA team noted that in IE8, the list bullets were smaller than in IE7 or Firefox. All three browsers were accessing the same CSS property:

Re: [css-d] List bullet sizes

2009-07-09 Thread Stephen Tang
Hi Tedd, No harm done. :-) Thanks for confirming that the browsers each have their own way of rendering bullets. In the end, I did browser-sniff using an IE8 conditional statement and modifying the CSS until that bullet was close in size to the other browser's rendering. IE8 appears to render

Re: [css-d] List bullet sizes

2009-07-09 Thread Kevin Doyle
---[snip]--- In short, there are many differences between browsers with respect how they display html. If you don't like the size of a disc displayed in one browser as compared to another, then you have two choices: 1) live with it; 2) or browser sniff and change the code accordingly.

[css-d] List bullet sizes

2009-07-07 Thread Stephen Tang
Hi, I have a site that was using list-style-type: disc for a list bullet. The QA team noted that in IE8, the list bullets were smaller than in IE7 or Firefox. All three browsers were accessing the same CSS property: li {list-style-type: disc; font-size: 12px; line-height: 160%; } From reading

Re: [css-d] List bullet sizes

2009-07-07 Thread tedd
At 5:00 PM -0400 7/7/09, Stephen Tang wrote: Hi, I have a site that was using list-style-type: disc for a list bullet. The QA team noted that in IE8, the list bullets were smaller than in IE7 or Firefox. All three browsers were accessing the same CSS property: li {list-style-type: disc;

Re: [css-d] List bullet sizes

2009-07-07 Thread Stephen Tang
Hi Daniel, Thanks for this interesting idea, but I still need to support IE6. I also can't use a background image, because the list might be on the right side of a floated image, and I've already experienced problems with that. I ended up calling an ie8.css file using an IE conditional statement

Re: [css-d] List bullet sizes

2009-07-07 Thread Stephen Tang
Hi Tedd, I presume by your URL that the answer is No. :-) --Stephen On Tue, Jul 7, 2009 at 5:50 PM, teddtedd.sperl...@gmail.com wrote: At 5:00 PM -0400 7/7/09, Stephen Tang wrote: Hi, I have a site that was using list-style-type: disc for a list bullet. The QA team noted that in IE8, the

Re: [css-d] List bullet sizes

2009-07-07 Thread Bob Rosenberg
At 23:30 -0400 on 07/07/2009, Stephen Tang wrote about Re: [css-d] List bullet sizes: On Tue, Jul 7, 2009 at 6:34 PM, Daniel Navarrowebpe...@gmail.com wrote: Hi, li { list-style-type: none;  /* remove default bullets */ } li:before { content: \2022