Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-16 Thread Michael Adams
On Wed, 16 Apr 2008 00:27:20 +0200 Manfred Staudinger wrote: On 15/04/2008, Bill Brown [EMAIL PROTECTED] wrote: You can use this syntax to target all NON-MSIE browsers: !--[if !IE] -- style type=text/css@import url(css/fix/non_msie.css);/style !-- ![endif]-- Thats definitely an

[css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread John Griessen
David Laakso wrote: You have height:1%; on the below selector. You may (?) want to feed that only to IE/6, as compliant browsers might do better without it at +2 font-scaling. .p5 { height: 1%; } I have a restructuredtext generated site that now looks as intended in firefox, but

Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread Bill Brown
I have a restructuredtext generated site that now looks as intended in firefox, but not in the IE that is installed with Win2K. IE seems to ignore the css positioning of a list and an image hyperlink. http://ecosensory.com/ Hi John, You can use this syntax to target all NON-MSIE

Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread Manfred Staudinger
On 15/04/2008, John Griessen [EMAIL PROTECTED] wrote: Manfred Staudinger wrote: Hi John, If you want to select IE6 and IE7, but not IE8 nor IE5.5 or IE5.01 then you might use !--[if lte IE 7]![if gte IE 6] style type=text/css css here /style ![endif]![endif]-- Thanks,

Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread Manfred Staudinger
On 15/04/2008, Bill Brown [EMAIL PROTECTED] wrote: You can use this syntax to target all NON-MSIE browsers: !--[if !IE] -- style type=text/css@import url(css/fix/non_msie.css);/style !-- ![endif]-- Thats definitely an unnecessary hack. The correct (although proprietary) syntax would be:

Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread Thierry Koblentz
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] discuss.org] On Behalf Of Bill Brown Sent: Tuesday, April 15, 2008 4:27 PM To: Manfred Staudinger Cc: css-d@lists.css-discuss.org; John Griessen Subject: Re: [css-d] How do you feed IE versions different css than

Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread Nicholas Wilson
On Wednesday 16 April 2008 12:58 am Thierry Koblentz wrote: What about a simple: !--[if !IE] ... anything at all, including css here ![endif]-- Or am I totally missing something here? Could be me ;) But then every browser would ignore it, which is presumably not what you want.

Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread Nicholas Wilson
On Wednesday 16 April 2008 1:09 am John Griessen wrote: Thierry Koblentz wrote: What about a simple: !--[if !IE] ... anything at all, including css here ![endif]-- This short one looks good... As I understand this, it goes in default.css, so what else besides css code would you want

Re: [css-d] How do you feed IE versions different css than w3c compliant browsers?

2008-04-15 Thread David Laakso
1/ Regarding Conditional Comments, see: Microsoft Developer Network http://msdn2.microsoft.com/en-us/library/ms537512(VS.85).aspx 2/ Regarding using Conditional Comments to feed hacks to IE, see: On havingLayout (scroll down a little to: Alternatively, and possibly more future proof, are