<?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>SEOAnalytic.com official blog &#187; smaller css</title>
	<atom:link href="http://seoanalytic.com/blog/tag/smaller-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://seoanalytic.com/blog</link>
	<description>My thoughts about SEO, programming and life maybe ;)</description>
	<lastBuildDate>Mon, 20 Apr 2009 05:41:14 +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>Explaining Tools:CSS Optimiser</title>
		<link>http://seoanalytic.com/blog/51/explaining-toolscss-optimiser/</link>
		<comments>http://seoanalytic.com/blog/51/explaining-toolscss-optimiser/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 04:40:13 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Explaining tools]]></category>
		<category><![CDATA[better css]]></category>
		<category><![CDATA[compress css]]></category>
		<category><![CDATA[css optimizer]]></category>
		<category><![CDATA[reduce css]]></category>
		<category><![CDATA[smaller css]]></category>

		<guid isPermaLink="false">http://seoanalytic.com/blog/?p=51</guid>
		<description><![CDATA[The CSS Optimiser is a handy tool for those who want to speed up their time loading pages, save bandwidth and tidy their CSS code. This tool will try to optimize your CSS styles, find duplicate properties, classes or ids and it will merge selectors with the same name.
Just look at the example below:
a {
color:yellow; [...]]]></description>
			<content:encoded><![CDATA[<p>The CSS Optimiser is a handy tool for those who want to speed up their time loading pages, save bandwidth and tidy their CSS code. This tool will try to optimize your CSS styles, find duplicate properties, classes or ids and it will merge selectors with the same name.</p>
<p>Just look at the example below:</p>
<pre lang="css">a {
color:yellow; font-weight:normal;
}</pre>
<p>It looks like normal code and it seems there is nothing to optimise, isn&#8217;t it? Actually this code can be optimized by <strong>20.9% </strong>with CSS Optimizer. The new code looks like this (and that is standart compression type):</p>
<pre lang="css">
a {
color:#FF0;
font-weight:400;
}
</pre>
<p>But you could go further and choose the highest compression rate which will output:</p>
<pre lang="css">
a{color:#FF0;font-weight:400;}
</pre>
<p>and that is a style <strong>30.2%</strong> smaller than the original.<br />
This tool has many options to ensure that the new style will be the closest to your needs.<br />
To optimize your CSS code follow <a href="http://seoanalytic.com/tools/css_optimiser/">this link</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://seoanalytic.com/blog/51/explaining-toolscss-optimiser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
