<?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>workblog &#187; Design</title>
	<atom:link href="http://iandunn.name/workblog/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://iandunn.name/workblog</link>
	<description></description>
	<lastBuildDate>Wed, 25 Aug 2010 22:23:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Best Way to Define Font Sizes in CSS</title>
		<link>http://iandunn.name/workblog/the-best-way-to-define-font-sizes-in-css/</link>
		<comments>http://iandunn.name/workblog/the-best-way-to-define-font-sizes-in-css/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:15:23 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://iandunn.name/workblog/?p=160</guid>
		<description><![CDATA[Often designers will want fixed font sizes so that the text on the actual size will exactly match their mockups, but The Web is Not Print (see also Pixel Perfect Design Does Not Necessarily Equal Good Web Design). A List Apart has a worked out a good method for sizing text consistently across browsers while [...]]]></description>
			<content:encoded><![CDATA[<p>Often designers will want fixed font sizes so that the text on the actual size will exactly match their mockups, but <a href="http://www.cactusflower.org/the-web-is-not-print/">The Web is Not Print</a> <em>(see also </em><a href="http://webdesign.about.com/od/webdesignbasics/a/aa061807.htm"><em>Pixel Perfect Design Does Not Necessarily Equal Good Web Design</em></a><em>)</em>. A List Apart has a worked out a good method for <a href="http://www.alistapart.com/articles/howtosizetextincss/">sizing text consistently across browsers while maintaining the user&#8217;s ability to resize the text</a> to fit their needs.</p>
<p><a href="http://webdesign.about.com/od/webdesignbasics/a/aa061807.htm"></a></p>
<p>All you need to do is define a baseline size and line height in the body tag, and then use em&#8217;s throughout the rest of the site.</p>
<pre name="code" class="css">

body
{
font-size:100%;
line-height:1.125em; /* 16×1.125=18 */
}

.bodytext p
{
font-size:0.875em;
}

.sidenote
{
font-size:0.75em;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://iandunn.name/workblog/the-best-way-to-define-font-sizes-in-css/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer Doesn&#8217;t Match PNG Color to CSS Color</title>
		<link>http://iandunn.name/workblog/internet-explorer-doesnt-match-png-color-to-css-color/</link>
		<comments>http://iandunn.name/workblog/internet-explorer-doesnt-match-png-color-to-css-color/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 22:05:23 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://iandunn.name/workblog/?p=152</guid>
		<description><![CDATA[
All currently available versions of Internet Explorer incorrectly display colors in PNG images. To work around that, instead of setting a background color, you can use create 1&#215;1 pixel image with the color you want, and set it as a repeating background image.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.biorust.com/tutorials/detail/231/en/"><img class="aligncenter" title="Fixing the PNG Color Problem In Internet Explorer" src="http://www.biorust.com/tutorials/ps-fixingpngs/problem4uk.jpg" alt="" width="500" height="500" /></a></p>
<p>All currently available versions of <a href="http://www.biorust.com/tutorials/detail/231/en/">Internet Explorer incorrectly display colors in PNG images</a>. To work around that, instead of setting a background color, you can use <a href="http://www.whywaitwebs.com/blog/designers/how-to-avoid-background-color-matching-problems-with-safari/">create 1&#215;1 pixel image with the color you want, and set it as a repeating background image</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iandunn.name/workblog/internet-explorer-doesnt-match-png-color-to-css-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
