Re: [css-d] question on layout and Mac check please

2005-11-05 Thread Michael Hulse
I made a typo... see below: On Nov 4, 2005, at 3:15 PM, Michael Hulse wrote: > I ussually do this for my sites: > > * html { > margin: 0; > padding: 0; > } That should have been: /* Zero-out margins and padding for all elements: */ * { margin: 0; padding: 0; } Not t

Re: [css-d] question on layout and Mac check please

2005-11-05 Thread Holly Bergevin
>Francesco Sanfilippo wrote: >>1. Why does the following layout have a small white border in IE 6, >>but not in FF 1.5? It's a "3-pixel thing" that IE does with blocks following a float that also "have layout" as David mentioned. I'm not sure that floating the right column will give you the lo

Re: [css-d] question on layout and Mac check please

2005-11-05 Thread David Laakso
Francesco Sanfilippo wrote: >Two questions actually... > >1. Why does the following layout have a small white border in IE 6, >but not in FF 1.5? > > Dunno.,. 'has layout' thing? This may help(and I think you've got an invalid doctype)? #right { width: 30%; float: right; } >2. Could someone

Re: [css-d] question on layout and Mac check please

2005-11-04 Thread Francesco Sanfilippo
Thanks for the Mac shots Micky! I was a bit vague as to where the border is. There is a 2-3px wide white border between the left and right columns in IE 6 on Windows. The tag is there because this is an asp.net application which require forms for server-side interaction. Francesco On 11/4/

Re: [css-d] question on layout and Mac check please

2005-11-04 Thread Michael Hulse
I am on Mac, so I do not see this border you talk about... here are some screens from the Mac world: Safari: http://www.ambiguism.com/CSSD/sharemycodeSafari.jpg IE5.2: http://www.ambiguism.com/CSSD/sharemycodeIEMac.jpg Firefox: http://www.ambiguism.com/CSSD/sharemycodeFFMac.jpg I do notice tha

[css-d] question on layout and Mac check please

2005-11-04 Thread Francesco Sanfilippo
Two questions actually... 1. Why does the following layout have a small white border in IE 6, but not in FF 1.5? 2. Could someone check this on Mac IE as well as Safari? Thanks! http://sharemycode.com/test1.aspx Francesco __