<?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>chaoscontrol.org &#187; Design</title>
	<atom:link href="http://www.chaoscontrol.org/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chaoscontrol.org</link>
	<description></description>
	<lastBuildDate>Wed, 30 May 2012 17:32:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>CSS, Minification&#8230; and You.</title>
		<link>http://www.chaoscontrol.org/css-minification-and-you/</link>
		<comments>http://www.chaoscontrol.org/css-minification-and-you/#comments</comments>
		<pubDate>Mon, 14 May 2012 18:51:01 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.chaoscontrol.org/?p=58</guid>
		<description><![CDATA[If you run Yahoo&#8217;s YSlow or use FireBug to display page load times, one of the recommendations to increase your site&#8217;s performance is to optimize CSS and JavaScript transfers by &#8220;minifying&#8221; them. Minification is the process of stripping out any of the unnecessaries that developers add to their files to make them easier to read [...]]]></description>
			<content:encoded><![CDATA[<p>If you run Yahoo&#8217;s <a title="YSlow" href="http://www.yslow.com" target="_blank">YSlow</a> or use FireBug to display page load times, one of the recommendations to increase your site&#8217;s performance is to optimize CSS and JavaScript transfers by &#8220;minifying&#8221; them.</p>
<p>Minification is the process of stripping out any of the unnecessaries that developers add to their files to make them easier to read and prettier to view. Things like white space (spaces), comment characters, line breaks, tabs, etc.</p>
<p>Example,</p>
<p><strong>Original (279 bytes):</strong></p>
<pre name="code" class="css">body {
font-family: helvetica, arial, sans-serif;
color: block;
line-height: 1.2em;
}

/* make divs centered */
.center {
display: block;
margin: 0 auto;
}

#box {
border: 1px solid #000;
padding: 15px;
margin-top: 5px;
}</pre>
<p><strong>Minified (165 bytes):</strong></p>
<pre name="code" class="css">body{font-family:helvetica,arial,sans-serif;color:block;line-height:1.2em}
.center{display:block;margin:0 auto}#box{border:1px solid #000;padding:15px;
margin-top:5px}</pre>
<p>The original CSS is now 41% smaller after minification! For low traffic websites, saving 114 bytes on a page load isn&#8217;t significant but for high volume sites, 1000 page loads (ignoring caching for the sake of argument) is about 111K of less data to be transferred. Now imagine a site like amazon.com getting millions of hits &#8211; the bandwidth savings becomes quite significant.</p>
<p>So, web developers. Reduce your bandwidth footprint and minify your CSS and Javascript files! You can use the free tool below to do so:</p>
<p><a title="CSS/JS Minify-O-Matic!" href="http://minify.chaoscontrol.org">CSS/JavaScript Minify-O-Matic!</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chaoscontrol.org/css-minification-and-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
