Thanks Sandra. I actually would like to dump any browser specific styles
altogether; if only I can find the right browser-neutral style property
combo that can give me the footer alignment that I was trying to accomplish.
If there's no better alternative, then I'll definitely just make my code css
std compliant, as you indicated.


> -----Original Message-----
> From: Sandra Clark [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 24, 2006 2:08 PM
> To: CF-Talk
> Subject: RE: Better IE/FF DIV Footers
> 
> Dump the browser detection, how do you compensate for Safari, Opera, IE7
> (which will probably work better with the FF code etc.
> 
> Instead, put your standards compliance css in one file and your ie
> specific
> overwrites in another.
> 
> Then in your html head area
> 
> <link rel="stylesheet" type="text/css" href="styles.css" />  <!--
> Standards
> based CSS goes here. -->
> <!-- [if lt IE 7]>
>   <link rel="stylesheet" type="text/css" href="ie6.css" />
> <![endif]-->
> 
> The information in the ie6.css stylesheet will overwrite properties in the
> styles.css  since it comes later in the cascade.  It will modify
> properties
> for IE5/6 browsers only, not IE7.  If you want to compensate for IE 7
> shortcomings, then after the IE6 style call, use another conditional
> comment
> to refer to [if eq IE 7].
> 
> This is the proper and supported way to filter for IE.?
> 
> 


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250968
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to