Thierry Koblentz wrote:

> > On Behalf Of Nick Fitzsimons

> > On Thu, March 6, 2008 7:07 pm, Thierry Koblentz wrote:
> > > Yep, the only issues I had to fix were related to the ieMac rules being
> > > picked up and the links not being "hot":
> > 
> > I'm curious as to why you would be fixing any of your own code to cater
> > for this early beta? The idea is that if your existing, working code
> > breaks, you tell the IE team and they fix _their_ code.
> >
> > Fixing anything now virtually guarantees that it'll be broken when the
> > next beta comes out - it's a waste of time, unless it allows you to
> > produce a more detailed bug report before backing the changes you've made
> > out again.
> 
> IE8 was reading my IEMac rules so fixing that and the links should not break
> anything later (and that
> took only 2 minutes of my time). 
> On the other hand, the navigation bar on my site is pretty broken in IE8,
> but I won't bother fixing it because I can't think of a "safe" fix for that.
> 
> 
> -- 
> Regards,
> Thierry | http://www.TJKDesign.com


I agree with Nick here. The band pass filter will be fixed in later beta. 
Currently I think you can use this approach (untested).


<style type="text/css">
@import url("normal-style.css");
/*\*//*/
@import url("ie8.css"); /* For current IE8 */
@import("ie-mac.css"); /* For IE/Mac */
/**/
@import url("ie7"); /* For IE7 */
</style>


ie-mac.css

contains your IE/Mac styles.


ie8.css

contains your buggy IE8 styles.


ie7

contains your buggy IE7 styles and all the hacks targeting IE7 must be removed 
from the normal style sheet and place in this file.

Hopefully when IE8 doesn't parse the band pass filter the current buggy IE8 
behavior will also be fixed. Does this all sound correct? 


Alan

http://css-class.com/


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to