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.
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


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 body 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 use css to do the layout on
 http://www.centralmiss.com/accesscontrolgroup/index.html and most
 everything seems correct in firefox, but IE is not creating the box I
 desire at all.

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


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;
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/