kvnmcwebn wrote:
Georg just let me make sure i understand the i.e. future safe way.

Does it go like this?

mozilla type browser

#logo{margin: 0px auto 0 9px; }


i.e.(versions 5 and up is it?)

* html #logo{margin: 777px auto 0 555px;}

Yes, but if you wanna make sure old IE/Mac isn't seeing any of it, then
put _all_ IE/win corrections at the very end of your stylesheet and wrap
them in an @media rule. IE/Mac can't see what's inside such an @media
rule, and other browsers (including IE7 in 'strict mode'[1] ) ignores
the '* html' selector.

Example:
@media screen {
* html #logo {margin: 777px auto 0 555px;}
* html #whatever {property: value;}
/* and so on... */
}

        Georg

[1]http://blogs.msdn.com/ie/archive/2005/9/2.aspx
--
http://www.gunlaug.no
******************************************************
The discussion list for  http://webstandardsgroup.org/

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

Reply via email to