<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Create an IE-Only Stylesheet</title>
	<atom:link href="http://css-tricks.com/how-to-create-an-ie-only-stylesheet/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Wed, 22 May 2013 13:49:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Web Guru</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72896</link>
		<dc:creator>Web Guru</dc:creator>
		<pubDate>Wed, 17 Mar 2010 06:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72896</guid>
		<description><![CDATA[Thanks a ton for this wonderful hack for IE. It has taken some time, but slowly I&#039;ve started doing ok for IE.

;)]]></description>
		<content:encoded><![CDATA[<p>Thanks a ton for this wonderful hack for IE. It has taken some time, but slowly I&#8217;ve started doing ok for IE.</p>
<p>;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS3-Only Tabbed Area &#171; qeqnes &#124; Designing. jQuery, Ajax, PHP, MySQL and Templates</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72282</link>
		<dc:creator>CSS3-Only Tabbed Area &#171; qeqnes &#124; Designing. jQuery, Ajax, PHP, MySQL and Templates</dc:creator>
		<pubDate>Wed, 10 Mar 2010 23:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72282</guid>
		<description><![CDATA[[...] course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won’t specifically cover that [...]]]></description>
		<content:encoded><![CDATA[<p>[...] course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won’t specifically cover that [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The 3D Data Labs Guy</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72237</link>
		<dc:creator>The 3D Data Labs Guy</dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72237</guid>
		<description><![CDATA[In the ex below, only the major ver number is specified; therefore, the code evaluates as true for both Internet Explorer 5 and Internet Explorer 5.5.
&lt;code&gt;
&lt;!--[if IE 5]&gt;
&lt;p&gt;using any incremental version of IE 5! &lt;/p&gt;
&lt;![endif]--&gt;
&lt;/code&gt;
Hope it helps.
thks!]]></description>
		<content:encoded><![CDATA[<p>In the ex below, only the major ver number is specified; therefore, the code evaluates as true for both Internet Explorer 5 and Internet Explorer 5.5.<br />
<code><br />
&lt;!--[if IE 5]&gt;<br />
&lt;p&gt;using any incremental version of IE 5! &lt;/p&gt;<br />
&lt;![endif]--&gt;<br />
</code><br />
Hope it helps.<br />
thks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The 3D Data Labs Guy</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72233</link>
		<dc:creator>The 3D Data Labs Guy</dc:creator>
		<pubDate>Wed, 10 Mar 2010 04:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72233</guid>
		<description><![CDATA[ok. this should work :) sorry for the above.

&lt;pre&gt;&lt;code&gt;&lt;!--[if IE 5.0000]&gt;
&lt;p&gt;Internet Explorer 5.0! &lt;/p&gt;
&lt;![endif]--&gt;&lt;/code&gt;&lt;/pre&gt;

Some have experimented some strange action with IE 5.5 

&lt;pre&gt;&lt;code&gt;&lt;!--[if IE 5.5]&gt; is not interpreted
&lt;!--[if IE 5.500]&gt; is not interpreted
&lt;!--[if IE 5.5000]&gt;&lt;b&gt; is interpreted&lt;/b&gt;&lt;/code&gt;&lt;/pre&gt;

May be IE is right! I think one need to be more specific when targeting ie. Instead one can try this:

&lt;pre&gt;&lt;code&gt;&lt;!--[if (gte IE 5.5)&amp;(lt IE 7)]&gt;
&lt;p&gt;You are using IE 5.5 or IE 6 &lt;/p&gt;&lt;![endif]--&gt;&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>ok. this should work :) sorry for the above.</p>
<pre><code>&lt;!--[if IE 5.0000]&gt;
&lt;p&gt;Internet Explorer 5.0! &lt;/p&gt;
&lt;![endif]--&gt;</code></pre>
<p>Some have experimented some strange action with IE 5.5 </p>
<pre><code>&lt;!--[if IE 5.5]&gt; is not interpreted
&lt;!--[if IE 5.500]&gt; is not interpreted
&lt;!--[if IE 5.5000]&gt;<b> is interpreted</b></code></pre>
<p>May be IE is right! I think one need to be more specific when targeting ie. Instead one can try this:</p>
<pre><code>&lt;!--[if (gte IE 5.5)&amp;(lt IE 7)]&gt;
&lt;p&gt;You are using IE 5.5 or IE 6 &lt;/p&gt;&lt;![endif]--&gt;</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: The 3D Data Labs Guy</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72232</link>
		<dc:creator>The 3D Data Labs Guy</dc:creator>
		<pubDate>Wed, 10 Mar 2010 04:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72232</guid>
		<description><![CDATA[Trying to send the code here..

echo&quot;&lt;code&gt;&quot;;
echo&quot;&lt;!--[if IE 5.0000]&gt;\n&quot;;
echo&quot;&lt;p&gt;Internet Explorer 5.0! &lt;/p&gt;\n&quot;;
echo&quot;&lt;![endif]--&gt; &lt;/code&gt;\n&quot;;]]></description>
		<content:encoded><![CDATA[<p>Trying to send the code here..</p>
<p>echo&#8221;<code>";<br />
echo"&lt;!--[if IE 5.0000]&gt;\n";<br />
echo"&lt;p&gt;Internet Explorer 5.0! &lt;/p&gt;\n";<br />
echo"&lt;![endif]--&gt; </code>\n&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS3-Only Tabbed Area &#124; pro2go Designs Blog</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72230</link>
		<dc:creator>CSS3-Only Tabbed Area &#124; pro2go Designs Blog</dc:creator>
		<pubDate>Wed, 10 Mar 2010 02:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72230</guid>
		<description><![CDATA[[...] course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won&#8217;t specifically cover that [...]]]></description>
		<content:encoded><![CDATA[<p>[...] course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won&#8217;t specifically cover that [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS3-Only Tabbed Area &#124; E Marketing, Web Design, Web Develop, SEO and SEM Egypt Blog</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72227</link>
		<dc:creator>CSS3-Only Tabbed Area &#124; E Marketing, Web Design, Web Develop, SEO and SEM Egypt Blog</dc:creator>
		<pubDate>Wed, 10 Mar 2010 02:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72227</guid>
		<description><![CDATA[[...] course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won&#8217;t specifically cover that [...]]]></description>
		<content:encoded><![CDATA[<p>[...] course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won&#8217;t specifically cover that [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The 3D Data Labs Guy</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72206</link>
		<dc:creator>The 3D Data Labs Guy</dc:creator>
		<pubDate>Tue, 09 Mar 2010 19:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72206</guid>
		<description><![CDATA[Hi Chris, nice post. Very informative post this.
The following code correctly identifies Internet Explorer 5.

&lt;!--[if IE 5.0000]&gt;--&gt;
Internet Explorer 5.0!


Ie 5, which shipped with Windows 2000, has a version vector equal to 5.0002. Pls note: the conditional expression [if lte IE 5.0000] returns false when evaluated in the release build of IE 5.
The value of the expression is called a &lt;b&gt;version vector&lt;/b&gt; by the way.
Thks!]]></description>
		<content:encoded><![CDATA[<p>Hi Chris, nice post. Very informative post this.<br />
The following code correctly identifies Internet Explorer 5.</p>
<p>&lt;!&#8211;[if IE 5.0000]&gt;&#8211;><br />
Internet Explorer 5.0!</p>
<p>Ie 5, which shipped with Windows 2000, has a version vector equal to 5.0002. Pls note: the conditional expression [if lte IE 5.0000] returns false when evaluated in the release build of IE 5.<br />
The value of the expression is called a <b>version vector</b> by the way.<br />
Thks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niall</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72190</link>
		<dc:creator>Niall</dc:creator>
		<pubDate>Tue, 09 Mar 2010 15:34:58 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72190</guid>
		<description><![CDATA[Yup, put the c back in css please!]]></description>
		<content:encoded><![CDATA[<p>Yup, put the c back in css please!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS3-Only Tabbed Area &#171; DesignerLinks</title>
		<link>http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72176</link>
		<dc:creator>CSS3-Only Tabbed Area &#171; DesignerLinks</dc:creator>
		<pubDate>Tue, 09 Mar 2010 06:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/how-to-create-an-ie-only-stylesheet/#comment-72176</guid>
		<description><![CDATA[[...] category.Of course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won&#8217;t specifically cover that here.Clean [...]]]></description>
		<content:encoded><![CDATA[<p>[...] category.Of course, if you wanted to use it in production, one option would be to use conditional comments to add JavaScript to make them to work. We won&#8217;t specifically cover that here.Clean [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-22 06:50:23 by W3 Total Cache -->