Re: [WSG] How exactly can I get pixel perfect in IE?

2005-04-06 Thread tee
 Instead of this:
 
ul
liitem/li
liitem/li
liitem/li
/ul
 
 try this:
 
ul
 liitem/li
 liitem/li
 liitem/li
 /ul
 
 This markup style leaves one list item per row to ease human readability,
 but effectively eliminates all white-space.
 
 Paul  

Ah well of course. I remember reading this in More on Eric Meyer CSS many
months ago. It fixed now. THANKS.

http://www.lotusseeds.com/tryagain_michael.html

However it goes back to square after I insert span.../span to hide the
text, per Alan' reminder. I will explain more later...

Cheers,

tee

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



[WSG] How exactly can I get pixel perfect in IE?

2005-04-05 Thread tee
Hi, Been wanting to find a solution  but it's sort of something not critical
until I came up with this menu

http://www.lotusseeds.com/tryagain_michael.html

I have a one pixel in padding-bottom in the li Everything looks so perfect
in FF and Safari, but in IE (PC  Mac) , it's something like 3 or 4 pixel.
It messes up my menu.

I looked up the IE bugs page from position is everything, but couldn't find
something that is similar to this symptom.

Any idea?

tee

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] How exactly can I get pixel perfect in IE?

2005-04-05 Thread Thierry Koblentz
tee wrote:
 Hi, Been wanting to find a solution  but it's sort of something not
 critical until I came up with this menu
 
 http://www.lotusseeds.com/tryagain_michael.html
 Any idea?

In the markup, do not leave whitespace between the list items

HTH,
Thierry | http://www.TJKDesign.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] How exactly can I get pixel perfect in IE?

2005-04-05 Thread Paul Novitski
At 12:29 PM 4/5/2005, tee wrote:
I have a one pixel in padding-bottom in the li Everything looks so perfect
in FF and Safari, but in IE (PC  Mac) , it's something like 3 or 4 pixel.
It messes up my menu.
At 12:42 PM 4/5/2005, Thierry Koblentz wrote:
In the markup, do not leave whitespace between the list items

Instead of this:
ul
liitem/li
liitem/li
liitem/li
/ul
try this:
ul
liitem/li
liitem/li
liitem/li
/ul
This markup style leaves one list item per row to ease human readability, 
but effectively eliminates all white-space.

Paul  

**
The discussion list for  http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**