Guillaume wrote: > Hi everyone, > > I'm using an @import filter to fire my css... > Now I would like to reset those styles for Ie 5.0 for example, > to make sure he only has the text version and no styles at > all... > I thought throwing to this browser an empty style sheet through > conditional comments... > > But apparently it doesn't work this way... > Any clues... > > <style type="text/css" title="Structure">@import > 'layoutLcie.css';</style> <style type="text/css" > title="Structure">@import 'colorsLcie.css';</style> <style > type="text/css" title="Structure">@import > 'fontsLcie.css';</style> > > <!--[if lte IE 5.0]> > <style type="text/css" title="Structure">@import > 'lte50.css';</style> <![endif]-->
You mean lte50.css is really just an empty sheet? No, that won't work. IE5 first picks up the other three stylesheets, and then an empty one extra, which doesn't tell it anything. To make it work, you need to counter the styles from the previous stylesheets in lte50.css. -- Els http://locusmeus.com/ http://locusoptimus.com/ ______________________________________________________________________ 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/
