<?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: Cool cross-browser styling with CSS and IE&#8217;s filter</title>
	<atom:link href="http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/</link>
	<description>HTML, CSS, Javascript and more</description>
	<lastBuildDate>Wed, 14 Dec 2011 22:39:26 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jawance</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-821</link>
		<dc:creator>jawance</dc:creator>
		<pubDate>Wed, 07 Dec 2011 02:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-821</guid>
		<description>a good view testing solution.
you do a better thing.</description>
		<content:encoded><![CDATA[<p>a good view testing solution.<br />
you do a better thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: φωτοβολταικα</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-263</link>
		<dc:creator>φωτοβολταικα</dc:creator>
		<pubDate>Sat, 16 Apr 2011 08:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-263</guid>
		<description>To solve the problem of fuzzy text in IE when using a filter, wrap the content of filtered element and set it’s position style to relative</description>
		<content:encoded><![CDATA[<p>To solve the problem of fuzzy text in IE when using a filter, wrap the content of filtered element and set it’s position style to relative</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: isak</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-125</link>
		<dc:creator>isak</dc:creator>
		<pubDate>Wed, 15 Sep 2010 17:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-125</guid>
		<description>I think you answered my question. It just took a bit to sink in. I was trying to make it work in IE.
Many thanks.</description>
		<content:encoded><![CDATA[<p>I think you answered my question. It just took a bit to sink in. I was trying to make it work in IE.<br />
Many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wouter Bos</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-118</link>
		<dc:creator>Wouter Bos</dc:creator>
		<pubDate>Mon, 13 Sep 2010 20:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-118</guid>
		<description>I don&#039;t know exactly what you are referring to, but I guess you want to know how the columns of the website itself are styled.

i use this background color: &quot;background-color: rgba(255, 255, 255, 0.8)&quot;, the last value is an alpha value. It&#039;s not supported by IE yet, but all other major browsers support it.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know exactly what you are referring to, but I guess you want to know how the columns of the website itself are styled.</p>
<p>i use this background color: &#8220;background-color: rgba(255, 255, 255, 0.8)&#8221;, the last value is an alpha value. It&#8217;s not supported by IE yet, but all other major browsers support it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: isak</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-117</link>
		<dc:creator>isak</dc:creator>
		<pubDate>Mon, 13 Sep 2010 19:49:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-117</guid>
		<description>How are you placing your text on top so it stays black but your content box expands/contracts to allow more/less text?</description>
		<content:encoded><![CDATA[<p>How are you placing your text on top so it stays black but your content box expands/contracts to allow more/less text?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wouter Bos</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-102</link>
		<dc:creator>Wouter Bos</dc:creator>
		<pubDate>Wed, 08 Sep 2010 17:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-102</guid>
		<description>That&#039;s what happens if you use a filter. Very annoying actually, because you get different aliasing in the same page. On top of it: text rendering can get really ugly when implementing custom fonts with CSS3 font-face. But if you don&#039;t want anti-aliasing, you could force it by applying the following filter to the body-tag:

-ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffffff, endColorstr=#ffffffff)&quot;; /* IE8+ */
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffffff, endColorstr=#ffffffff); /* IE7 and lower */

This will disable the default anti-aliasing.</description>
		<content:encoded><![CDATA[<p>That&#8217;s what happens if you use a filter. Very annoying actually, because you get different aliasing in the same page. On top of it: text rendering can get really ugly when implementing custom fonts with CSS3 font-face. But if you don&#8217;t want anti-aliasing, you could force it by applying the following filter to the body-tag:</p>
<p>-ms-filter: &#8220;progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffffff, endColorstr=#ffffffff)&#8221;; /* IE8+ */<br />
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffffff, endColorstr=#ffffffff); /* IE7 and lower */</p>
<p>This will disable the default anti-aliasing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: isak</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-99</link>
		<dc:creator>isak</dc:creator>
		<pubDate>Tue, 07 Sep 2010 20:27:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-99</guid>
		<description>It seems you have figured out how to make your text appear anti-aliased on an opaque background. How???</description>
		<content:encoded><![CDATA[<p>It seems you have figured out how to make your text appear anti-aliased on an opaque background. How???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fewa</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-60</link>
		<dc:creator>fewa</dc:creator>
		<pubDate>Tue, 01 Jun 2010 21:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-60</guid>
		<description>@Chrissteven81: It&#039;s just that IE doesn&#039;t follow any standards. Usually when we develop website layouts for applications, we first make them work with Firefox, Opera, Chrome and Safari.

IE comes later if we have time, because making layouts look nice on it takes more time because of all the &quot;IE-only&quot; tricks it requires. After seven years into this business, I have yet to see any benefit in NOT following the standard. These IE-only things don&#039;t provide any more possibilities than the standard ones.

However, of course we understand that many people still use IE and that&#039;s why we have to take the time to provide support for our web applications that are being used in IE.</description>
		<content:encoded><![CDATA[<p>@Chrissteven81: It&#8217;s just that IE doesn&#8217;t follow any standards. Usually when we develop website layouts for applications, we first make them work with Firefox, Opera, Chrome and Safari.</p>
<p>IE comes later if we have time, because making layouts look nice on it takes more time because of all the &#8220;IE-only&#8221; tricks it requires. After seven years into this business, I have yet to see any benefit in NOT following the standard. These IE-only things don&#8217;t provide any more possibilities than the standard ones.</p>
<p>However, of course we understand that many people still use IE and that&#8217;s why we have to take the time to provide support for our web applications that are being used in IE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wouter Bos</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-43</link>
		<dc:creator>Wouter Bos</dc:creator>
		<pubDate>Tue, 16 Mar 2010 20:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-43</guid>
		<description>I think you have to replace &lt;code&gt;background&lt;strong&gt;;&lt;/strong&gt; ... ;&lt;/code&gt; with &lt;code&gt;background&lt;strong&gt;:&lt;/strong&gt; ... ;&lt;/code&gt;
The best thing is to auto generate such CSS3 stuff:
http://www.css3generator.com/
http://css3please.com/</description>
		<content:encoded><![CDATA[<p>I think you have to replace <code>background<strong>;</strong> ... ;</code> with <code>background<strong>:</strong> ... ;</code><br />
The best thing is to auto generate such CSS3 stuff:<br />
<a href="http://www.css3generator.com/" rel="nofollow">http://www.css3generator.com/</a><br />
<a href="http://css3please.com/" rel="nofollow">http://css3please.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jabes88</title>
		<link>http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way/comment-page-1/#comment-42</link>
		<dc:creator>Jabes88</dc:creator>
		<pubDate>Tue, 16 Mar 2010 17:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.thebrightlines.com/?p=174#comment-42</guid>
		<description>I&#039;m not sure what this is .. but it contains a syntax error.
&quot;background; -o-gradient(top, bottom,from(#cccccc),to(#888888));&quot;
Also I&#039;ve found another opacity solution that I&#039;m pretty fond of. You can view it here: http://snipplr.com/view/28205/cross-browser-css-opacity/</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure what this is .. but it contains a syntax error.<br />
&#8220;background; -o-gradient(top, bottom,from(#cccccc),to(#888888));&#8221;<br />
Also I&#8217;ve found another opacity solution that I&#8217;m pretty fond of. You can view it here: <a href="http://snipplr.com/view/28205/cross-browser-css-opacity/" rel="nofollow">http://snipplr.com/view/28205/cross-browser-css-opacity/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

