<?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/"
	>

<channel>
	<title>Elastic CSS Framework</title>
	<atom:link href="http://www.elasticss.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elasticss.com</link>
	<description>A simple, yet comple, and un-obstrusive CSS Framework.</description>
	<pubDate>Thu, 25 Nov 2010 16:35:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New elastic css video on creating 3column layout</title>
		<link>http://www.elasticss.com/new-elastic-css-video-on-creating-3column-layout/</link>
		<comments>http://www.elasticss.com/new-elastic-css-video-on-creating-3column-layout/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 16:34:00 +0000</pubDate>
		<dc:creator>Fernando Trasviña</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Elastic]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[elasticss]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://elasticss.com/new-elastic-css-video-on-creating-3column-layout/</guid>
		<description><![CDATA[I just created a small new video on how to create a 3 column layout with elastic where the columns are the same-height

]]></description>
			<content:encoded><![CDATA[<p>I just created a small new video on how to create a 3 column layout with elastic where the columns are the same-height</p>
<p><iframe src="http://player.vimeo.com/video/17191720?title=0&amp;byline=0&amp;portrait=0" width="480" height="300" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/new-elastic-css-video-on-creating-3column-layout/feed/</wfw:commentRss>
		</item>
		<item>
		<title>So what does elastic can do if no elastic.js?</title>
		<link>http://www.elasticss.com/so-what-does-elastic-can-do-if-no-elastic-js/</link>
		<comments>http://www.elasticss.com/so-what-does-elastic-can-do-if-no-elastic-js/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 04:31:20 +0000</pubDate>
		<dc:creator>Fernando Trasviña</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Challenges]]></category>

		<category><![CDATA[Elastic]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://elasticss.com/?p=2157</guid>
		<description><![CDATA[Today I was reading about css layouts and found an old post on stackoverflow,they discussed about a 4 column based layout with a small tweek on it.
The main thing with this layout is that it requires nesting to be accomplished, so using elastic was of course my first option, but then i found this link [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was reading about css layouts and found an old <a class="wp-caption" title="4 column based layout question" href="http://stackoverflow.com/questions/1896857/4-fixed-width-columns-with-top-left-box-spanning-2-columns-centered-how" target="_blank">post on stackoverflow,</a>they discussed about a 4 column based layout with a small tweek on it.<br />
The main thing with this layout is that it requires nesting to be accomplished, so using elastic was of course my first option, but then i found this link where they present the <a class="wp-caption" title="older post requesting 4 column layout" href="http://www.weask.us/entry/4-columns-elastic-css-top-left-box-spanning-2-columns" target="_blank">same 4 column based layout.</a>The main problem presented in that page is that the author does not like css frameworks, and he does not want to use tables either.</p>
<p>Ok, the tables thing i don&#8217;t have any complain, don&#8217;t use them to layout your pages use them do display tabular data. But no css frameworks, why people keeps being afraid of them, maybe we are not providing them with the right tools, or maybe they really don&#8217;t like them. maybe its pride that they don&#8217;t want to use someone else css code, either way i kinda disliked it a little, and went to check if i could do it myself, ok here are the steps.</p>
<p>so if you are lazy and didn&#8217;t go into the link here is the image of the layout on subject.</p>
<p><div class="wp-caption aligncenter" style="width: 255px"><img title="layout" src="http://img188.imageshack.us/img188/5729/4collayout001.jpg" alt="image of a 4 column based layout" width="245" height="206" /><p class="wp-caption-text">image of a 4 column based layout</p></div></p>
<p>If i could use elastic for this i would endup using the following code. and exactly the following code, assuming the framework is included, so no extra css nothing.</p>
<p><pre name="code" class="html">
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221;
    &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;
    &lt;head&gt;
        &lt;title&gt;Layout&lt;/title&gt;
        &lt;link rel=&#8221;stylesheet&#8221; href=&#8221;elastic.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221;&gt;
        &lt;style type=&#8221;text/css&#8221; media=&#8221;screen&#8221;&gt;
            body{
                width  : 960px;
                margin : 0 auto;
            }
            .bg{
                background-color : #efefef;
                min-height       : 100px;
            }
            .dh{
                min-height : 220px;
            }
            .fixed.column{
                width   : 200px;
                margin  : 10px 20px;
            }
            .on-4.columns &gt; .fixed.column.span-2{
                width   : 480px;
                margin  : 0;
            }
                .fixed.column.span-2 &gt; .unit{
                    margin : 10px 20px;
                }
        &lt;/style&gt;
        &lt;script src=&#8221;jquery.js&#8221;&gt;&lt;/script&gt;
        &lt;script src=&#8221;elastic.js&#8221;&gt;&lt;/script&gt;
    &lt;/head&gt;
    &lt;body class=&#8221;on-4 columns&#8221;&gt;
        &lt;div class=&#8221;fixed column span-2 on-2 columns&#8221;&gt;
            &lt;div class=&#8221;unit bg&#8221;&gt;top left box&lt;/div&gt;
            &lt;div class=&#8221;fixed column bg&#8221;&gt;first column&lt;/div&gt;
            &lt;div class=&#8221;fixed column bg&#8221;&gt;second column&lt;/div&gt;
        &lt;/div&gt;
        &lt;div class=&#8221;fixed column bg dh&#8221;&gt;third column&lt;/div&gt;
        &lt;div class=&#8221;fixed column bg dh&#8221;&gt;fourth column&lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre></p>
<p>But no no elastic, how about something similar but no js, no framework no nada. ok ill use elastic, no javascript, no jquery (this layout is fixed anyway), 200px columns with a 20px margin giving us a total of 960px;</p>
<p>Like this layout its based on columns we definitely will need float:left, and of course a way to clearfix. float left no problem, clearfix ill get that from elastic internal clearfix. and i will extract some other things and keep the same classes from elastic so i can tell the difference.</p>
<p>Now the markup. Basically lets try to make the markup as simple as possible. so lets just add the specific things that we need from elastic, of course this means, no reset, no base, no nesting, no round, no vertical centers and all. actually if i where so sure that this is all the layout that i will ever need i will not use elastic, because this layout is so simple, tough is never the case so ill use elastic anyway but here it is.</p>
<p><pre name="code" class="html">
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221;
    &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;
    &lt;head&gt;
        &lt;title&gt;Layout&lt;/title&gt;
        &lt;style type=&#8221;text/css&#8221; media=&#8221;screen&#8221;&gt;
            .unit:after, .columns:after, .column:after{
            	content    : &#8221; &#8220;;
            	display    : block;
            	height     : 0;
            	clear      : both;
            	visibility : hidden;
            }
            .unit, .columns, .column{
            	display  : block;
            	_zoom    : 1;
            	_display : inline-block;
            }
            .column
            {
            	float : left;
            }
            body{
                width  : 960px;
                margin : 0 auto;
            }
            .bg{
                background-color : #efefef;
                min-height       : 100px;
            }
            .dh{
                min-height : 220px;
            }
            .fixed.column{
                width   : 200px;
                margin  : 10px 20px;
            }
            .on-4.columns &gt; .fixed.column.span-2{
                width   : 480px;
                margin  : 0;
            }
                .fixed.column.span-2 &gt; .unit{
                    margin : 10px 20px;
                }
        &lt;/style&gt;
    &lt;/head&gt;
    &lt;body class=&#8221;on-4 columns&#8221;&gt;
        &lt;div class=&#8221;fixed column span-2 on-2 columns&#8221;&gt;
            &lt;div class=&#8221;unit bg&#8221;&gt;top left box&lt;/div&gt;
            &lt;div class=&#8221;fixed column bg&#8221;&gt;first column&lt;/div&gt;
            &lt;div class=&#8221;fixed column bg&#8221;&gt;second column&lt;/div&gt;
        &lt;/div&gt;
        &lt;div class=&#8221;fixed column bg dh&#8221;&gt;third column&lt;/div&gt;
        &lt;div class=&#8221;fixed column bg dh&#8221;&gt;fourth column&lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre></p>
<p>So what do we get from this. for me its the same, same markup, same clearfix, so what do you get with elastic? why use it. the first reason is that wether you use on the framework or no for a specific case, it keeps the style and that is a huge advantage already. the other one, is that this layout is so simple, and if you wanna standout i can bet you wont get away with this, you will require nesting, vertical or horizontal centering, how about same-height, how about some jquery, jquery ui, or some custom widgets, now that looks like a real site to me, the code you will need for all that, well i would use a framework.</p>
<p>The other thing, elastic actually is not doing any intrusive code, actually the only difference here is that I copied the clearfix from elastic, i even did some overrides to elastic css classes, nothing happened, same result, let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/so-what-does-elastic-can-do-if-no-elastic-js/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Screencast: Elastic CSS Advanced Tips</title>
		<link>http://www.elasticss.com/new-screencast-elastic-css-advanced-tips/</link>
		<comments>http://www.elasticss.com/new-screencast-elastic-css-advanced-tips/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 20:54:35 +0000</pubDate>
		<dc:creator>Sergio</dc:creator>
		
		<category><![CDATA[Elastic]]></category>

		<guid isPermaLink="false">http://elasticss.com/?p=2148</guid>
		<description><![CDATA[Here are shown how to use some of the advanced features in Elastic CSS Framework like Column Supercharge, Adaptive Columns, Centering, Liquid Layouts, Advanced Column Techniques (mixing fixed, elastic and automagic columns)

Elastic CSS Framework Advanced from Sergio de la Garza on Vimeo.
As always you can post your questions or comments here or on Google Groups.
P.S. [...]]]></description>
			<content:encoded><![CDATA[<p>Here are shown how to use some of the advanced features in Elastic CSS Framework like Column Supercharge, Adaptive Columns, Centering, Liquid Layouts, Advanced Column Techniques (mixing fixed, elastic and automagic columns)</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10411610&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=10411610&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/10411610">Elastic CSS Framework Advanced</a> from <a href="http://vimeo.com/user3392778">Sergio de la Garza</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>As always you can post your questions or comments here or on <a href="http://groups.google.com/group/elastic-css-framework" target="_blank">Google Groups</a>.</p>
<p>P.S. Sorry for the Audio, we really need a good mic hehe</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/new-screencast-elastic-css-advanced-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Announcing the Elastic CSS Framework Channel on Vimeo</title>
		<link>http://www.elasticss.com/announcing-the-elastic-css-framework-channel-on-vimeo/</link>
		<comments>http://www.elasticss.com/announcing-the-elastic-css-framework-channel-on-vimeo/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 19:30:09 +0000</pubDate>
		<dc:creator>Fernando Trasviña</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Elastic]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[screencasts]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://elasticss.com/?p=2128</guid>
		<description><![CDATA[We created a video channel on Vimeo check it out here, and its not coming alone!. We also are giving the first screencasts(it would not be nice to have a channel without interesting content right?). The process was not easy being the first time talking to a computer and explaining at the same time we [...]]]></description>
			<content:encoded><![CDATA[<p>We created a video channel on Vimeo check it out <a title="Elastic CSS Framework screencast vimeo channel" href="http://vimeo.com/channels/elasticss" target="_self">here</a>, and its not coming alone!. We also are giving the first screencasts(it would not be nice to have a channel without interesting content right?). The process was not easy being the first time talking to a computer and explaining at the same time we code and create stuff. But like everything we should get better at it with practice. Without further ado.</p>
<p><object width="650" height="300" data="http://vimeo.com/moogaloop.swf?clip_id=10177483&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=10177483&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /></object></p>
<p><a href="http://vimeo.com/10177483">Elastic CSS Framework: Creating a Page 01</a> from <a href="http://vimeo.com/user3293547">fernando trasvina</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Previous Analysis in the process of creating a web page with the framework, analysis is made on gimp on Ubuntu 10.04</p>
<p><object width="650" height="300" data="http://vimeo.com/moogaloop.swf?clip_id=10187350&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=10187350&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /></object></p>
<p><a href="http://vimeo.com/10187350">Elastic CSS Framework: building a page 02</a> from <a href="http://vimeo.com/user3293547">fernando trasvina</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Creating the actual layout, with the html classes from elastic, up to the point where all the rest is css skining. Using gedit, with elastic_gedit_snippets from http://github.com/azendal/elastic_gedit_snippets.</p>
<p><object width="650" height="300" data="http://vimeo.com/moogaloop.swf?clip_id=10265223&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=10265223&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /></object></p>
<p><a href="http://vimeo.com/10265223">Elastic CSS Framework: Creating a Page 03</a> from <a href="http://vimeo.com/user3293547">fernando trasvina</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>This part show the final skinning to create the layout details, and shows some modifiers from the framework stack</p>
<p>The features used from the framework here only scratch the possibilities that you get with the framework, so the main objective is to serve as an introduction tutorial so you can start getting the feel of how to use it and what to expect form the power of combining classes that provides.</p>
<h2><a href="http://elasticss.com/wp-content/uploads/elastic_building_a_page_source.zip">Download the project files</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/announcing-the-elastic-css-framework-channel-on-vimeo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick Tip: The Difference Between Live() and Delegate()</title>
		<link>http://www.elasticss.com/quick-tip-the-difference-between-live-and-delegate/</link>
		<comments>http://www.elasticss.com/quick-tip-the-difference-between-live-and-delegate/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 16:03:18 +0000</pubDate>
		<dc:creator>Sergio</dc:creator>
		
		<category><![CDATA[Dev News]]></category>

		<category><![CDATA[a-dom-element]]></category>

		<category><![CDATA[context]]></category>

		<category><![CDATA[does-the-same]]></category>

		<category><![CDATA[element]]></category>

		<category><![CDATA[future]]></category>

		<category><![CDATA[handler]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[the-document-]]></category>

		<guid isPermaLink="false">http://elasticss.com/quick-tip-the-difference-between-live-and-delegate/</guid>
		<description><![CDATA[ In jQuery 1.3, the team introduced the live() method, which allows us to bind event handlers to elements on the page, as well as any that might be created in the future dynamically. Though not perfect, it definitely proved to be helpful. Most notably, live() bubbles all the way up, and attaches the handler to the document. ]]></description>
			<content:encoded><![CDATA[<p> In jQuery 1.3, the team introduced the live() method, which allows us to bind event handlers to elements on the page, as well as any that might be created in the future dynamically. Though not perfect, it definitely proved to be helpful. Most notably, live() bubbles all the way up, and attaches the handler to the document. </p>
<p>Read the original post:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/nettuts/~3/bGycK9Esuq4/" title="Quick Tip: The Difference Between Live() and Delegate()">Quick Tip: The Difference Between Live() and Delegate()</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/quick-tip-the-difference-between-live-and-delegate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS3 Please! Instant results… Thank You</title>
		<link>http://www.elasticss.com/css3-please-instant-results%e2%80%a6-thank-you-2/</link>
		<comments>http://www.elasticss.com/css3-please-instant-results%e2%80%a6-thank-you-2/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:39:24 +0000</pubDate>
		<dc:creator>Javier Ayala</dc:creator>
		
		<category><![CDATA[Dev News]]></category>

		<category><![CDATA[a-fun-example]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[examples]]></category>

		<category><![CDATA[fancy-new]]></category>

		<category><![CDATA[front page]]></category>

		<category><![CDATA[nicely-done-]]></category>

		<category><![CDATA[out-there]]></category>

		<category><![CDATA[page]]></category>

		<category><![CDATA[play-with]]></category>

		<category><![CDATA[the-results-]]></category>

		<guid isPermaLink="false">http://elasticss.com/css3-please-instant-results%e2%80%a6-thank-you-2/</guid>
		<description><![CDATA[ Paul Irish and Jonathan Neal have created a fun example of various CSS tweaks that you can make, and see the results instantly. CSS3, Please! lets you play with fancy new rules such as: border-radius box shadow gradients rgba support in backgrounds transforms font-face Really nice way to make tweaks inline in the page&#8230;.. ]]></description>
			<content:encoded><![CDATA[<p> Paul Irish and Jonathan Neal have created a fun example of various CSS tweaks that you can make, and see the results instantly. CSS3, Please! lets you play with fancy new rules such as: border-radius box shadow gradients rgba support in backgrounds transforms font-face Really nice way to make tweaks inline in the page&#8230;.. </p>
<p><img src="http://elasticss.com/wp-content/uploads/e2be14e40dplease-150x89.png" /></p>
<p>Visit link:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/ajaxian/~3/mDpzAA5hJ38/css3-please-instant-results-thank-you" title="CSS3 Please! Instant results… Thank You">CSS3 Please! Instant results… Thank You</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/css3-please-instant-results%e2%80%a6-thank-you-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS3 Please! Instant results… Thank You</title>
		<link>http://www.elasticss.com/css3-please-instant-results%e2%80%a6-thank-you/</link>
		<comments>http://www.elasticss.com/css3-please-instant-results%e2%80%a6-thank-you/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:39:24 +0000</pubDate>
		<dc:creator>Fernando Trasviña</dc:creator>
		
		<category><![CDATA[Dev News]]></category>

		<category><![CDATA[a-fun-example]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[examples]]></category>

		<category><![CDATA[fancy-new]]></category>

		<category><![CDATA[front page]]></category>

		<category><![CDATA[fun-example]]></category>

		<category><![CDATA[have-created]]></category>

		<category><![CDATA[irish]]></category>

		<category><![CDATA[results]]></category>

		<category><![CDATA[rules-such]]></category>

		<guid isPermaLink="false">http://elasticss.com/css3-please-instant-results%e2%80%a6-thank-you/</guid>
		<description><![CDATA[ Paul Irish and Jonathan Neal have created a fun example of various CSS tweaks that you can make, and see the results instantly. CSS3, Please! lets you play with fancy new rules such as: border-radius box shadow gradients rgba support in backgrounds transforms font-face Really nice way to make tweaks inline in the page&#8230;.]]></description>
			<content:encoded><![CDATA[<p> Paul Irish and Jonathan Neal have created a fun example of various CSS tweaks that you can make, and see the results instantly. CSS3, Please! lets you play with fancy new rules such as: border-radius box shadow gradients rgba support in backgrounds transforms font-face Really nice way to make tweaks inline in the page&#8230;.</p>
<p><img src="http://elasticss.com/wp-content/uploads/e2be14e40dplease1-150x89.png" /></p>
<p>View original post here:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/ajaxian/~3/mDpzAA5hJ38/css3-please-instant-results-thank-you" title="CSS3 Please! Instant results… Thank You">CSS3 Please! Instant results… Thank You</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/css3-please-instant-results%e2%80%a6-thank-you/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML Minification</title>
		<link>http://www.elasticss.com/html-minification-2/</link>
		<comments>http://www.elasticss.com/html-minification-2/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 09:14:51 +0000</pubDate>
		<dc:creator>Sergio</dc:creator>
		
		<category><![CDATA[Dev News]]></category>

		<category><![CDATA[a-linter-going]]></category>

		<category><![CDATA[and-collapsing]]></category>

		<category><![CDATA[document]]></category>

		<category><![CDATA[front page]]></category>

		<category><![CDATA[parses-the-html]]></category>

		<category><![CDATA[performance]]></category>

		<category><![CDATA[simply-stripped]]></category>

		<category><![CDATA[take-advantage]]></category>

		<guid isPermaLink="false">http://elasticss.com/html-minification-2/</guid>
		<description><![CDATA[ Good old Kangax has been playing with HTML minification and has shared his new tool in an early stage. ]]></description>
			<content:encoded><![CDATA[<p> Good old Kangax has been playing with HTML minification and has shared his new tool in an early stage. </p>
<p><img src="http://elasticss.com/wp-content/uploads/76fc860a85enshot1-150x121.png" /></p>
<p>Visit link:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/ajaxian/~3/GqOvRXjR1wY/html-minification" title="HTML Minification">HTML Minification</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/html-minification-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML Minification</title>
		<link>http://www.elasticss.com/html-minification/</link>
		<comments>http://www.elasticss.com/html-minification/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 09:14:51 +0000</pubDate>
		<dc:creator>Fernando Trasviña</dc:creator>
		
		<category><![CDATA[Dev News]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[and-collapsing]]></category>

		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[detects-event]]></category>

		<category><![CDATA[document]]></category>

		<category><![CDATA[external-script]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[oftentimes-the]]></category>

		<category><![CDATA[parses-the-html]]></category>

		<guid isPermaLink="false">http://elasticss.com/html-minification/</guid>
		<description><![CDATA[ Good old Kangax has been playing with HTML minification and has shared his new tool in an early stage. What does it do? ]]></description>
			<content:encoded><![CDATA[<p> Good old Kangax has been playing with HTML minification and has shared his new tool in an early stage. What does it do? </p>
<p><img src="http://elasticss.com/wp-content/uploads/76fc860a85enshot-150x121.png" /></p>
<p>Continue reading here:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/ajaxian/~3/GqOvRXjR1wY/html-minification" title="HTML Minification">HTML Minification</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/html-minification/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Harmony: Canvas Drawing Tool</title>
		<link>http://www.elasticss.com/harmony-canvas-drawing-tool/</link>
		<comments>http://www.elasticss.com/harmony-canvas-drawing-tool/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 07:50:44 +0000</pubDate>
		<dc:creator>Sergio</dc:creator>
		
		<category><![CDATA[Dev News]]></category>

		<category><![CDATA[a-nice-input]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[apparently-lack]]></category>

		<category><![CDATA[back-on-the]]></category>

		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[experiment-with]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[front page]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[opera]]></category>

		<category><![CDATA[richard-cabello]]></category>

		<category><![CDATA[style-sketches]]></category>

		<category><![CDATA[sure-it-worked]]></category>

		<category><![CDATA[touch-as-yet]]></category>

		<category><![CDATA[works-on-webkit]]></category>

		<guid isPermaLink="false">http://elasticss.com/harmony-canvas-drawing-tool/</guid>
		<description><![CDATA[ Harmony is a new drawing tool, a HTML5/Canvas experiment with great potential. It provides some unique brush styles, and can produce some great-looking charcoal pencil style sketches, among other things. Better to try it out than explain it in words]]></description>
			<content:encoded><![CDATA[<p> Harmony is a new drawing tool, a HTML5/Canvas experiment with great potential. It provides some unique brush styles, and can produce some great-looking charcoal pencil style sketches, among other things. Better to try it out than explain it in words</p>
<p><img src="http://elasticss.com/wp-content/uploads/9815882069armony-100x150.jpg" /></p>
<p>Here is the original post:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/ajaxian/~3/9ASJDZ59k9Y/harmony-canvas-drawing-tool" title="Harmony: Canvas Drawing Tool">Harmony: Canvas Drawing Tool</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elasticss.com/harmony-canvas-drawing-tool/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
