<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Guillermo Rauch&#039;s Devthought &#187; ie7</title>
	<atom:link href="http://www.devthought.com/tag/ie7/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devthought.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 16:38:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tip: High quality CSS thumbnails in IE7</title>
		<link>http://www.devthought.com/2009/03/13/tip-high-quality-css-thumbnails-in-ie7/</link>
		<comments>http://www.devthought.com/2009/03/13/tip-high-quality-css-thumbnails-in-ie7/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 14:06:52 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Tumble]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=475</guid>
		<description><![CDATA[IE7 supports a custom bicubic resampling mode for images. Before, resizing a 500&#215;500 image like this: would produce a horrible result in IE, with noticeably lower quality in the resized version. This is easily fixed in IE7 by applying the &#8230; <a href="http://www.devthought.com/2009/03/13/tip-high-quality-css-thumbnails-in-ie7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>IE7 supports a custom bicubic <a href="http://msdn.microsoft.com/en-us/library/ms530822(VS.85).aspx">resampling mode</a> for images. Before, resizing a 500&#215;500 image like this:</p>
<pre class='highlight ' lang="html4strict">
<img src="pic.jpg" alt="This image is really 500x500 big" class="thumb" width="50" height="50" />
</pre>
<p>would produce a horrible result in IE, with noticeably lower quality in the resized version.</p>
<p>This is easily fixed in IE7 by applying the following property to the img tag:</p>
<pre class='highlight ' lang="css">
img.thumb { -ms-interpolation-mode: bicubic; }
</pre>
<p>Go to this <a href="/wp-content/articles/browser-resize/">demo page</a> for a Flickr picture example.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/03/13/tip-high-quality-css-thumbnails-in-ie7/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
	</channel>
</rss>

