<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Web ramblings I'd rather not forget</title>
	<atom:link href="http://simonwilder.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://simonwilder.wordpress.com</link>
	<description>nifty pickings of web development goodness from around the web</description>
	<lastBuildDate>Tue, 23 Jun 2009 10:40:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='simonwilder.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Web ramblings I'd rather not forget</title>
		<link>http://simonwilder.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://simonwilder.wordpress.com/osd.xml" title="Web ramblings I&#039;d rather not forget" />
	<atom:link rel='hub' href='http://simonwilder.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Fixing &#8211; PIL IOError: decoder jpeg not available</title>
		<link>http://simonwilder.wordpress.com/2009/06/17/fixing-pil-ioerror-decoder-jpeg-not-available/</link>
		<comments>http://simonwilder.wordpress.com/2009/06/17/fixing-pil-ioerror-decoder-jpeg-not-available/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 21:01:33 +0000</pubDate>
		<dc:creator>Kidni</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[PIL]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://simonwilder.wordpress.com/?p=33</guid>
		<description><![CDATA[After a while of trying many different approaches found across the beautiful interweb, I stumbled upon Greg&#8217;s post here. I have adapted his post for OS X as he used Ubuntu. So you get PIL (the Python Imaging Library) all installed on your new system and you’re feeling proud of yourself. But then you go [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=33&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After a while of trying many different approaches found across the beautiful interweb, I stumbled upon Greg&#8217;s post <a href="http://www.answermysearches.com/fixing-pil-ioerror-decoder-jpeg-not-available/320/">here</a>. I have adapted his post for OS X as he used Ubuntu.</p>
<p>So you get PIL (the Python Imaging Library) all installed on your new system and you’re feeling proud of yourself. But then you go to do some tasks involving JPEG’s and you get this horriffic error:</p>
<p><strong>IOError: decoder jpeg not available</strong></p>
<p>Here’s how I re-installed PIL correctly. But before you try to reinstall it, make sure you’ve removed every ounce of PIL from your system. Somehow the reinstall didn’t work until I removed both the PIL site-packages install AND the temporary installation folder i.e., where the tar file unpacked to.</p>
<p>My sucessful re-installation of PIL on OS X 10.5.7:</p>
<p>First remove your last install!</p>
<p><code><br />
$ sudo rm -rf /usr/lib/python2.5/site-packages/PIL<br />
$ sudo rm /usr/lib/python2.5/site-packages/PIL.pth<br />
$ sudo rm ~/Imaging-1.1.6<br />
</code></p>
<ol>
<li>If you haven&#8217;t already, you must install the <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://developer.apple.com/tools/xcode/">Apple Development Tools (XCode).</a></li>
<li>Download and install the Unix software installer <a href="http://www.finkproject.org/">Fink</a>. The binary installers for the Mac worked great, both on my Intel and PowerPC machines.</li>
<li>Open a Terminal window and type:<br />
<code><br />
fink install libjpeg<br />
curl -O http://effbot.org/media/downloads/Imaging-1.1.6.tar.gz<br />
tar -xzf Imaging-1.1.6.tar.gz<br />
cd Imaging-1.1.6<br />
sudo python setup.py install<br />
</code>
</li>
</ol>
<p>Get PIL again and do the install:</p>
<p><code><br />
$ wget http://effbot.org/media/downloads/Imaging-1.1.6.tar.gz<br />
$ gunzip Imaging-1.1.6.tar.gz<br />
$ tar xvf Imaging-1.1.6.tar<br />
$ cd Imaging-1.1.6/<br />
$ python setup.py build_ext -i<br />
</code></p>
<p>Run the included test to make sure everything now works:</p>
<p><code><br />
$ python selftest.py<br />
</code></p>
<p>If everything worked do the real install:</p>
<p><code>$ sudo python setup.py install</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simonwilder.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simonwilder.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simonwilder.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simonwilder.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simonwilder.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simonwilder.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simonwilder.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simonwilder.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simonwilder.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simonwilder.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simonwilder.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simonwilder.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simonwilder.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simonwilder.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=33&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://simonwilder.wordpress.com/2009/06/17/fixing-pil-ioerror-decoder-jpeg-not-available/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ddf1fdb1fae0d5278c8e2fc69ea000c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kidni</media:title>
		</media:content>
	</item>
		<item>
		<title>IE6 Min-Height Hack</title>
		<link>http://simonwilder.wordpress.com/2009/04/29/ie6-min-height-hack/</link>
		<comments>http://simonwilder.wordpress.com/2009/04/29/ie6-min-height-hack/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 10:00:56 +0000</pubDate>
		<dc:creator>Kidni</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[min-height]]></category>

		<guid isPermaLink="false">http://simonwilder.wordpress.com/?p=27</guid>
		<description><![CDATA[IE6. No it&#8217;s not dead yet and still holds a significant market share. One of the many annoyances is that it does not support &#8220;min-height&#8221;. Fear not, there is a quick and simple workaround that is fully supported in IE6 and 7. It is completely safe to use in Mozilla/Firefox, Opera 7.x+, Safari1.2+  too, rejoice. So [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=27&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>IE6. No it&#8217;s not dead yet and still holds a significant market share. One of the many annoyances is that it does not support &#8220;min-height&#8221;. Fear not, there is a quick and simple workaround that is fully supported in IE6 and 7. It is completely safe to use in Mozilla/Firefox, Opera 7.x+, Safari1.2+  too, rejoice.</p>
<p>So here it is then:</p>
<p><code>selector {<br />
&nbsp;&nbsp;&nbsp;&nbsp;min-height: 500px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;height: auto !important;<br />
&nbsp;&nbsp;&nbsp;&nbsp;height: 500px;<br />
}</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simonwilder.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simonwilder.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simonwilder.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simonwilder.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simonwilder.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simonwilder.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simonwilder.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simonwilder.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simonwilder.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simonwilder.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simonwilder.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simonwilder.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simonwilder.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simonwilder.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=27&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://simonwilder.wordpress.com/2009/04/29/ie6-min-height-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ddf1fdb1fae0d5278c8e2fc69ea000c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kidni</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS Browser Specific Hacks</title>
		<link>http://simonwilder.wordpress.com/2009/04/22/css-browser-specific-hacks/</link>
		<comments>http://simonwilder.wordpress.com/2009/04/22/css-browser-specific-hacks/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 15:15:06 +0000</pubDate>
		<dc:creator>Kidni</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[hack]]></category>

		<guid isPermaLink="false">http://simonwilder.wordpress.com/?p=17</guid>
		<description><![CDATA[The different ways in which various browsers render the same CSS is a constant annoyance to web developers. Luckily there are certain hacks that can be used to target specific browsers. Some examples of these are as follows. Internet Explorer 6 #selector{ _property: value; } Internet Explorer 7 /* Target IE7 and below */ #selector{ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=17&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The different ways in which various browsers render the same CSS is a constant annoyance to web developers. Luckily there are certain hacks that can be used to target specific browsers. Some examples of these are as follows.</p>
<h3>Internet Explorer 6</h3>
<p><code>#selector{<br />
_property: value;<br />
}</code></p>
<h3>Internet Explorer 7</h3>
<p><code>/* Target IE7 and below */<br />
#selector{<br />
*property: value;<br />
}</code></p>
<p><code> </code></p>
<p><code>/* Then override for IE6 specifically */<br />
#selector{<br />
_property: value;<br />
}</code></p>
<h3>Firefox 2</h3>
<p><code>#selector, x:-moz-any-link{<br />
property: value;<br />
}</code></p>
<h3>Firefox 3</h3>
<p><code>/* Target Firefox 2 */<br />
#selector, x:-moz-any-link{<br />
property: value;<br />
}</code></p>
<p><code>/* Then override for Firefox 3 specifically */<br />
#selector, x:-moz-any-link, x:default{<br />
property: value;<br />
}</code></p>
<h3>Safari 3.0+</h3>
<p>Please be aware that this is valid CSS3 and other browsers may support it soon.</p>
<p><code>body:first-of-type #selector{<br />
property: value;<br />
}</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simonwilder.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simonwilder.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simonwilder.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simonwilder.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simonwilder.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simonwilder.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simonwilder.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simonwilder.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simonwilder.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simonwilder.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simonwilder.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simonwilder.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simonwilder.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simonwilder.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=17&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://simonwilder.wordpress.com/2009/04/22/css-browser-specific-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ddf1fdb1fae0d5278c8e2fc69ea000c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kidni</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS conversion table for em&#8217;s, pixels, points and percentages.</title>
		<link>http://simonwilder.wordpress.com/2009/04/22/em-css-conversion-table/</link>
		<comments>http://simonwilder.wordpress.com/2009/04/22/em-css-conversion-table/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 11:37:59 +0000</pubDate>
		<dc:creator>Kidni</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ems]]></category>
		<category><![CDATA[pixel]]></category>
		<category><![CDATA[points]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Below is a conversion table for CSS. It contains values for pixels, points, em&#8217;s and percentages. Of course they are approximations and will be influenced by factors such as font, browser and OS. Points Pixels ems Percent 6pt 8px 0.5em 50% 7pt 9px 0.55em 55% 7.5pt 10px 0.625em 62.5% 8pt 11px 0.7em 70% 9pt 12px [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=1&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Below is a conversion table for CSS. It contains values for pixels, points, em&#8217;s and percentages. Of course they are approximations and will be influenced by factors such as font, browser and OS.</p>
<table style="text-align:center;" border="0" cellspacing="1" width="100%">
<tbody>
<tr style="background-color:#333;">
<th><span style="color:#ffffff;">Points</span></th>
<th><span style="color:#ffffff;">Pixels</span></th>
<th><span style="color:#ffffff;">ems</span></th>
<th><span style="color:#ffffff;">Percent</span></th>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">6pt</span></td>
<td><span style="color:#000000;">8px</span></td>
<td><span style="color:#000000;">0.5em</span></td>
<td><span style="color:#000000;">50%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">7pt</span></td>
<td><span style="color:#000000;">9px</span></td>
<td><span style="color:#000000;">0.55em</span></td>
<td><span style="color:#000000;">55%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">7.5pt</span></td>
<td><span style="color:#000000;">10px</span></td>
<td><span style="color:#000000;">0.625em</span></td>
<td><span style="color:#000000;">62.5%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">8pt</span></td>
<td><span style="color:#000000;">11px</span></td>
<td><span style="color:#000000;">0.7em</span></td>
<td><span style="color:#000000;">70%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">9pt</span></td>
<td><span style="color:#000000;">12px</span></td>
<td><span style="color:#000000;">0.75em</span></td>
<td><span style="color:#000000;">75%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">10pt</span></td>
<td><span style="color:#000000;">13px</span></td>
<td><span style="color:#000000;">0.8em</span></td>
<td><span style="color:#000000;">80%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">10.5pt</span></td>
<td><span style="color:#000000;">14px</span></td>
<td><span style="color:#000000;">0.875em</span></td>
<td><span style="color:#000000;">87.5%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">11pt</span></td>
<td><span style="color:#000000;">15px</span></td>
<td><span style="color:#000000;">0.95em</span></td>
<td><span style="color:#000000;">95%</span></td>
</tr>
<tr style="background-color:#883030;">
<td><span style="color:#ffffff;">12pt</span></td>
<td><span style="color:#ffffff;">16px</span></td>
<td><span style="color:#ffffff;">1em</span></td>
<td><span style="color:#ffffff;">100%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">13pt</span></td>
<td><span style="color:#000000;">17px</span></td>
<td><span style="color:#000000;">1.05em</span></td>
<td><span style="color:#000000;">105%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">13.5pt</span></td>
<td><span style="color:#000000;">18px</span></td>
<td><span style="color:#000000;">1.125em</span></td>
<td><span style="color:#000000;">112.5%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">14pt</span></td>
<td><span style="color:#000000;">19px</span></td>
<td><span style="color:#000000;">1.2em</span></td>
<td><span style="color:#000000;">120%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">14.5pt</span></td>
<td><span style="color:#000000;">20px</span></td>
<td><span style="color:#000000;">1.25em</span></td>
<td><span style="color:#000000;">125%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">15pt</span></td>
<td><span style="color:#000000;">21px</span></td>
<td><span style="color:#000000;">1.3em</span></td>
<td><span style="color:#000000;">130%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">16pt</span></td>
<td><span style="color:#000000;">22px</span></td>
<td><span style="color:#000000;">1.4em</span></td>
<td><span style="color:#000000;">140%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">17pt</span></td>
<td><span style="color:#000000;">23px</span></td>
<td><span style="color:#000000;">1.45em</span></td>
<td><span style="color:#000000;">145%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">18pt</span></td>
<td><span style="color:#000000;">24px</span></td>
<td><span style="color:#000000;">1.5em</span></td>
<td><span style="color:#000000;">150%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">20pt</span></td>
<td><span style="color:#000000;">26px</span></td>
<td><span style="color:#000000;">1.6em</span></td>
<td><span style="color:#000000;">160%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">22pt</span></td>
<td><span style="color:#000000;">29px</span></td>
<td><span style="color:#000000;">1.8em</span></td>
<td><span style="color:#000000;">180%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">24pt</span></td>
<td><span style="color:#000000;">32px</span></td>
<td><span style="color:#000000;">2em</span></td>
<td><span style="color:#000000;">200%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">26pt</span></td>
<td><span style="color:#000000;">35px</span></td>
<td><span style="color:#000000;">2.2em</span></td>
<td><span style="color:#000000;">220%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">27pt</span></td>
<td><span style="color:#000000;">36px</span></td>
<td><span style="color:#000000;">2.25em</span></td>
<td><span style="color:#000000;">225%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">28pt</span></td>
<td><span style="color:#000000;">37px</span></td>
<td><span style="color:#000000;">2.3em</span></td>
<td><span style="color:#000000;">230%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">29pt</span></td>
<td><span style="color:#000000;">38px</span></td>
<td><span style="color:#000000;">2.35em</span></td>
<td><span style="color:#000000;">235%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">30pt</span></td>
<td><span style="color:#000000;">40px</span></td>
<td><span style="color:#000000;">2.45em</span></td>
<td><span style="color:#000000;">245%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">32pt</span></td>
<td><span style="color:#000000;">42px</span></td>
<td><span style="color:#000000;">2.55em</span></td>
<td><span style="color:#000000;">255%</span></td>
</tr>
<tr style="background-color:#CCC;">
<td><span style="color:#000000;">34pt</span></td>
<td><span style="color:#000000;">45px</span></td>
<td><span style="color:#000000;">2.75em</span></td>
<td><span style="color:#000000;">275%</span></td>
</tr>
<tr style="background-color:#AAA;">
<td><span style="color:#000000;">36pt</span></td>
<td><span style="color:#000000;">48px</span></td>
<td><span style="color:#000000;">3em</span></td>
<td><span style="color:#000000;">300%</span></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simonwilder.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simonwilder.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simonwilder.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simonwilder.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simonwilder.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simonwilder.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simonwilder.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simonwilder.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simonwilder.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simonwilder.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simonwilder.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simonwilder.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simonwilder.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simonwilder.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=simonwilder.wordpress.com&amp;blog=7459790&amp;post=1&amp;subd=simonwilder&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://simonwilder.wordpress.com/2009/04/22/em-css-conversion-table/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ddf1fdb1fae0d5278c8e2fc69ea000c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kidni</media:title>
		</media:content>
	</item>
	</channel>
</rss>
