Re: [css-d] Font Sizing: Why Is Firefox Different?

2006-06-16 Thread Jade Rauenzahn
Have you ever tried using ems for font-sizing? I've always had very good luck with cross-browser compatability if I set my font sizes in ems. 1em is = 12px font, while .8em is equivalent to 10px. The code is simply: font-size: .8em;

Re: [css-d] Problems with IE doing centered layout

2006-05-17 Thread Jade Rauenzahn
I'm not sure if IE will allow you to set a width on the element. It's best to just make a container div to create that fixed width box, and I would think that would fix the problem. -Jade Rauenzahn On 5/17/06, Deprived One <[EMAIL PROTECTED]> wrote: > > I am trying to us

Re: [css-d] Universal reset of margins and padding: Which technique do you prefer?

2006-05-11 Thread Jade Rauenzahn
Definately the first. The second way in which you are doing that is very tedious and it's really just an unnecessary use of code. The * is a universal selector and will cancel all those elements, plus any you might have missed. __