<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments on: Simple CSS templates</title>
	<atom:link href="http://friendlybit.com/css/simple-css-templates/feed/" rel="self" type="application/rss+xml" />
	<link>http://friendlybit.com/css/simple-css-templates/</link>
	<description>Strategic web development</description>
	<lastBuildDate>Tue, 31 Jan 2012 23:05:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: websitedevelopmentdeveloper</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-36703</link>
		<dc:creator>websitedevelopmentdeveloper</dc:creator>
		<pubDate>Thu, 20 Jan 2011 17:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-36703</guid>
		<description>By examining both the methods of layouts, I feel like going for the float-float method though both have there pros. The float-float method offers more clarity and looks more better to the eye though I am in complete agreement with the view that you can work with float-margin method more easily as the second column expands automatically.</description>
		<content:encoded><![CDATA[<p>By examining both the methods of layouts, I feel like going for the float-float method though both have there pros. The float-float method offers more clarity and looks more better to the eye though I am in complete agreement with the view that you can work with float-margin method more easily as the second column expands automatically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Think Hive Studio</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-34146</link>
		<dc:creator>Think Hive Studio</dc:creator>
		<pubDate>Mon, 11 Oct 2010 02:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-34146</guid>
		<description>These are very handy bits of code to get a css layout started. I&#039;ve had this page bookmarked for quite some time and I refer back to it often when I&#039;m working on page layouts.
Just wanted to say thanks!</description>
		<content:encoded><![CDATA[<p>These are very handy bits of code to get a css layout started. I&#8217;ve had this page bookmarked for quite some time and I refer back to it often when I&#8217;m working on page layouts.<br />
Just wanted to say thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil Stenström</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-34002</link>
		<dc:creator>Emil Stenström</dc:creator>
		<pubDate>Sun, 25 Jul 2010 13:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-34002</guid>
		<description>@David: If you use the float-float method, you will see that the issue with clear: both does not exist there.

If you want to use float-margin, you can still use clearfix to clear your content. So the templates are all fine, and we need no tables for layout.</description>
		<content:encoded><![CDATA[<p>@David: If you use the float-float method, you will see that the issue with clear: both does not exist there.</p>
<p>If you want to use float-margin, you can still use clearfix to clear your content. So the templates are all fine, and we need no tables for layout.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-34001</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 25 Jul 2010 08:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-34001</guid>
		<description>As an example of my above statement, of &quot;clear&quot; breaking floated layouts, just do this:

In the example given on this page, &quot;3 columns using float-margin&quot;, add the following code to the &quot;content2&quot; block (replace square brackets of course):

[div style=&quot;float:left&quot;]float this left[/div]
[div style=&quot;clear:both&quot;][/div]
[div]template is now broken[/div]

When you add the above code, the &quot;broken&quot; words are placed below the level of the &quot;content1&quot; block. It is no longer flowing directly under the content2 text.

This is a problem where the &quot;clear&quot; appears in a column which is not as tall as one of the others. The text suddenly jumps to the lowest position on the page.

Therefore, using floats for layouts is ONLY practical if you NEVER need to use &quot;clear:both&quot; in your content.</description>
		<content:encoded><![CDATA[<p>As an example of my above statement, of &#8220;clear&#8221; breaking floated layouts, just do this:</p>
<p>In the example given on this page, &#8220;3 columns using float-margin&#8221;, add the following code to the &#8220;content2&#8243; block (replace square brackets of course):</p>
<p>[div style="float:left"]float this left[/div]<br />
[div style="clear:both"][/div]<br />
[div]template is now broken[/div]</p>
<p>When you add the above code, the &#8220;broken&#8221; words are placed below the level of the &#8220;content1&#8243; block. It is no longer flowing directly under the content2 text.</p>
<p>This is a problem where the &#8220;clear&#8221; appears in a column which is not as tall as one of the others. The text suddenly jumps to the lowest position on the page.</p>
<p>Therefore, using floats for layouts is ONLY practical if you NEVER need to use &#8220;clear:both&#8221; in your content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-34000</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 25 Jul 2010 08:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-34000</guid>
		<description>Larry, I&#039;m totally with you there, and I&#039;m not a designer, just a web developer / programmer.

I detest the decision to deny us the full usefulness of tables. Row height has been rendered useless, and this was a staple of many wonderful layouts. There was *no* real disadvantage, in the *real world*, to using tables.

As for using FLOATS for layout, that is *plagued* with problems. Try using a &quot;clear:both&quot; in any part of your body content, or menu content, and your template is destroyed. That&#039;s because &quot;clear&quot; clears *all floats on the page* not just the last one encountered.

Using floats for templates is nicely conformist, but highly impractical unless you are very careful with page content so it doesn&#039;t break the layout. That makes it a pain for CMS applications for a start.

The W3C is living in lala land when it comes to the needs of both designers and web app coders. If they just hadn&#039;t deprecated table row height it wouldn&#039;t be so bad. The fact they&#039;re now formalising the &quot;border-box&quot; option in CSS3 means many, many people have complained! IE did have a valid position, no matter what the purists say.

/rant</description>
		<content:encoded><![CDATA[<p>Larry, I&#8217;m totally with you there, and I&#8217;m not a designer, just a web developer / programmer.</p>
<p>I detest the decision to deny us the full usefulness of tables. Row height has been rendered useless, and this was a staple of many wonderful layouts. There was *no* real disadvantage, in the *real world*, to using tables.</p>
<p>As for using FLOATS for layout, that is *plagued* with problems. Try using a &#8220;clear:both&#8221; in any part of your body content, or menu content, and your template is destroyed. That&#8217;s because &#8220;clear&#8221; clears *all floats on the page* not just the last one encountered.</p>
<p>Using floats for templates is nicely conformist, but highly impractical unless you are very careful with page content so it doesn&#8217;t break the layout. That makes it a pain for CMS applications for a start.</p>
<p>The W3C is living in lala land when it comes to the needs of both designers and web app coders. If they just hadn&#8217;t deprecated table row height it wouldn&#8217;t be so bad. The fact they&#8217;re now formalising the &#8220;border-box&#8221; option in CSS3 means many, many people have complained! IE did have a valid position, no matter what the purists say.</p>
<p>/rant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaon</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-32972</link>
		<dc:creator>Shaon</dc:creator>
		<pubDate>Wed, 02 Sep 2009 22:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-32972</guid>
		<description>Thanks man. This&#039;s such a good resources. thanks for sharing.</description>
		<content:encoded><![CDATA[<p>Thanks man. This&#8217;s such a good resources. thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kundo! &#124; Anton Malmberg</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-31801</link>
		<dc:creator>Kundo! &#124; Anton Malmberg</dc:creator>
		<pubDate>Tue, 23 Jun 2009 16:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-31801</guid>
		<description>[...] lite extra för Kundo-teamet. Jag gjorde min första CSS-design för något år sedan genom Emil Stenströms guide och Björn Lilja var den förste som jag fakturerade, när jag precis hade registrerat min enskilda [...]</description>
		<content:encoded><![CDATA[<p>[...] lite extra för Kundo-teamet. Jag gjorde min första CSS-design för något år sedan genom Emil Stenströms guide och Björn Lilja var den förste som jag fakturerade, när jag precis hade registrerat min enskilda [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Plantillas css básicas &#124; Emilio Jos&#233; Rodr&#237;guez Garc&#237;a</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-31681</link>
		<dc:creator>Plantillas css básicas &#124; Emilio Jos&#233; Rodr&#237;guez Garc&#237;a</dc:creator>
		<pubDate>Thu, 02 Apr 2009 08:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-31681</guid>
		<description>[...] con más plantillas css para que nuestras páginas cumplan los estándares y se adapten mejor a nuestras [...]</description>
		<content:encoded><![CDATA[<p>[...] con más plantillas css para que nuestras páginas cumplan los estándares y se adapten mejor a nuestras [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wretched and Beautiful : links for 2009-03-16</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-31660</link>
		<dc:creator>Wretched and Beautiful : links for 2009-03-16</dc:creator>
		<pubDate>Mon, 16 Mar 2009 23:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-31660</guid>
		<description>[...] Simple CSS templates - Friendly Bit (tags: css) [...]</description>
		<content:encoded><![CDATA[<p>[...] Simple CSS templates &#8211; Friendly Bit (tags: css) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil Stenström</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-31442</link>
		<dc:creator>Emil Stenström</dc:creator>
		<pubDate>Fri, 06 Feb 2009 14:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-31442</guid>
		<description>@Mary: You can use the following template for that one: &lt;a href=&quot;http://friendlybit.com/files/templates/?style=2columns_float_margin&quot; rel=&quot;nofollow&quot;&gt;2 column&lt;/a&gt;, just switch the columns around, changing float: left to float: right, and margin-left to margin-right. Easy!</description>
		<content:encoded><![CDATA[<p>@Mary: You can use the following template for that one: <a href="http://friendlybit.com/files/templates/?style=2columns_float_margin" rel="nofollow">2 column</a>, just switch the columns around, changing float: left to float: right, and margin-left to margin-right. Easy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mary</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-31440</link>
		<dc:creator>Mary</dc:creator>
		<pubDate>Fri, 06 Feb 2009 12:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-31440</guid>
		<description>Hi! I like your templates! They&#039;re easy and clear. But I was looking for other type of template. Coudld you please help me? I wonder how to make this kind of coding in css:
http://i68.photobucket.com/albums/i36/edvy/css01.jpg
You&#039;d be my hero if you help me.
Thank you in advance!</description>
		<content:encoded><![CDATA[<p>Hi! I like your templates! They&#8217;re easy and clear. But I was looking for other type of template. Coudld you please help me? I wonder how to make this kind of coding in css:<br />
<a href="http://i68.photobucket.com/albums/i36/edvy/css01.jpg" rel="nofollow">http://i68.photobucket.com/albums/i36/edvy/css01.jpg</a><br />
You&#8217;d be my hero if you help me.<br />
Thank you in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harshad</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-30093</link>
		<dc:creator>Harshad</dc:creator>
		<pubDate>Thu, 10 Jan 2008 07:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-30093</guid>
		<description>Very nice article to understanding the basic principles of float elements...as well as to understand the structure of div&#039;s columns...Cheers Harshad D.</description>
		<content:encoded><![CDATA[<p>Very nice article to understanding the basic principles of float elements&#8230;as well as to understand the structure of div&#8217;s columns&#8230;Cheers Harshad D.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Plantillas CSS Básicas › CalinSoft</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-29780</link>
		<dc:creator>Plantillas CSS Básicas › CalinSoft</dc:creator>
		<pubDate>Fri, 30 Nov 2007 18:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-29780</guid>
		<description>[...]                         Ahora si no hay pretextos Plantillas CSS prácticamente básicas [...]</description>
		<content:encoded><![CDATA[<p>[...]                         Ahora si no hay pretextos Plantillas CSS prácticamente básicas [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Plantillas CSS Básicas &#8250; CalinSoft</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-28355</link>
		<dc:creator>Plantillas CSS Básicas &#8250; CalinSoft</dc:creator>
		<pubDate>Mon, 15 Oct 2007 23:42:33 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-28355</guid>
		<description>[...] si no hay pretextos Plantillas CSS prácticamente básicas. [...]</description>
		<content:encoded><![CDATA[<p>[...] si no hay pretextos Plantillas CSS prácticamente básicas. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ITVGuy2000</title>
		<link>http://friendlybit.com/css/simple-css-templates/#comment-24135</link>
		<dc:creator>ITVGuy2000</dc:creator>
		<pubDate>Fri, 11 May 2007 14:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/simple-css-templates/#comment-24135</guid>
		<description>Very skillfully boiled down to only the essentials, and presented very logically.

I wish I had found this resource two years ago.

Just quick suggestion tho. It might be useful to include the year when you present dates.</description>
		<content:encoded><![CDATA[<p>Very skillfully boiled down to only the essentials, and presented very logically.</p>
<p>I wish I had found this resource two years ago.</p>
<p>Just quick suggestion tho. It might be useful to include the year when you present dates.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/9 queries in 0.001 seconds using disk: basic
Object Caching 400/404 objects using disk: basic

Served from: friendlybit.com @ 2012-02-04 04:23:52 -->
