<?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: Done with faux columns</title>
	<atom:link href="http://diovo.com/2009/08/done-with-faux-columns/feed/" rel="self" type="application/rss+xml" />
	<link>http://diovo.com/2009/08/done-with-faux-columns/</link>
	<description>Startups, Programming and stuff...</description>
	<lastBuildDate>Sun, 20 May 2012 07:14:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Requillo</title>
		<link>http://diovo.com/2009/08/done-with-faux-columns/comment-page-1/#comment-4837</link>
		<dc:creator>Requillo</dc:creator>
		<pubDate>Thu, 14 Jul 2011 00:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.diovo.com/?p=870#comment-4837</guid>
		<description>Easy css illusion
it takes about a few seconds to do

.content {
	width:500px;
	float:left;
	padding:10px ;
	border-right:1px solid #999; /*same color and same width*/
	margin:0 0 10px 0;
}
.sidebar {
	width:300px;
	float:left;
	padding:10px;
	border-left:1px solid #999;/*same color and same width*/
	margin:0 0 10px -1px;/*this is the illusion part, the two borders will overlap eachother because of the negative margin, so if the content grows, the border of the content will grow and if the sidebar grows the border of the sidebar will grow */
}



 
 
</description>
		<content:encoded><![CDATA[<p>Easy css illusion<br />
it takes about a few seconds to do</p>
<p>.content {<br />
	width:500px;<br />
	float:left;<br />
	padding:10px ;<br />
	border-right:1px solid #999; /*same color and same width*/<br />
	margin:0 0 10px 0;<br />
}<br />
.sidebar {<br />
	width:300px;<br />
	float:left;<br />
	padding:10px;<br />
	border-left:1px solid #999;/*same color and same width*/<br />
	margin:0 0 10px -1px;/*this is the illusion part, the two borders will overlap eachother because of the negative margin, so if the content grows, the border of the content will grow and if the sidebar grows the border of the sidebar will grow */<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hassan Mehmood</title>
		<link>http://diovo.com/2009/08/done-with-faux-columns/comment-page-1/#comment-3814</link>
		<dc:creator>Hassan Mehmood</dc:creator>
		<pubDate>Sat, 04 Jun 2011 11:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.diovo.com/?p=870#comment-3814</guid>
		<description>I found a good solution here =)
http://www.wickham43.net/backgroundsfullheight2col.html</description>
		<content:encoded><![CDATA[<p>I found a good solution here =)<br />
<a href="http://www.wickham43.net/backgroundsfullheight2col.html" rel="nofollow">http://www.wickham43.net/backgroundsfullheight2col.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cat</title>
		<link>http://diovo.com/2009/08/done-with-faux-columns/comment-page-1/#comment-1611</link>
		<dc:creator>Cat</dc:creator>
		<pubDate>Fri, 19 Nov 2010 02:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.diovo.com/?p=870#comment-1611</guid>
		<description>I partially agree with you, but what about the case when the viewport goes below 200px in width? For that, css degrades gracefully into one scrollable column.

And, unfortunately, tables can&#039;t do that either (nor can they do a lot of things from the accessibility PoV, because, well, they aren&#039;t flexible). One of CSS&#039;s main plusses is that you don&#039;t need to always edit the HTML to get something to display differently. Yes, tables are useful, but they also mean you have to change something if you want that sidebar to display on the left instead of on the right.
(Also, from an accessibility PoV, what comes first should be first in logical order, i.e. sidebar before content, screen readers rely on that.)

Other ideas... http://woorkup.com/2009/10/11/really-simple-css-trick-for-equal-height-columns/

CSS was designed so that, really, all you would need is a containing block and height:100% (or inherit). That it isn&#039;t supported, alas, is the bane of everything.</description>
		<content:encoded><![CDATA[<p>I partially agree with you, but what about the case when the viewport goes below 200px in width? For that, css degrades gracefully into one scrollable column.</p>
<p>And, unfortunately, tables can&#8217;t do that either (nor can they do a lot of things from the accessibility PoV, because, well, they aren&#8217;t flexible). One of CSS&#8217;s main plusses is that you don&#8217;t need to always edit the HTML to get something to display differently. Yes, tables are useful, but they also mean you have to change something if you want that sidebar to display on the left instead of on the right.<br />
(Also, from an accessibility PoV, what comes first should be first in logical order, i.e. sidebar before content, screen readers rely on that.)</p>
<p>Other ideas&#8230; <a href="http://woorkup.com/2009/10/11/really-simple-css-trick-for-equal-height-columns/" rel="nofollow">http://woorkup.com/2009/10/11/really-simple-css-trick-for-equal-height-columns/</a></p>
<p>CSS was designed so that, really, all you would need is a containing block and height:100% (or inherit). That it isn&#8217;t supported, alas, is the bane of everything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pau Sanchez</title>
		<link>http://diovo.com/2009/08/done-with-faux-columns/comment-page-1/#comment-1610</link>
		<dc:creator>Pau Sanchez</dc:creator>
		<pubDate>Thu, 04 Feb 2010 21:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.diovo.com/?p=870#comment-1610</guid>
		<description>Hi!
The simplest solution I found, after lots and lots of researching several months ago, is to use tables ;)

There are things that can be done with DIVs, and situations where DIVs work great, but we have to face it. If you want to create a layout with no hacks, tables are the best.

I think a wrote a post about this some months ago:
http://www.codigomanso.com/en/2009/02/should-i-use-tables-for-layout/

Anyway, is like the problem you mentioned with Fibonacci. You can use recursion, but, seriously, if you plan to compute more than the 30th number, what you have to use is a &quot;for&quot;. Even if you want only the 10th number.

Really interesting blog, I&#039;m really enjoying it!</description>
		<content:encoded><![CDATA[<p>Hi!<br />
The simplest solution I found, after lots and lots of researching several months ago, is to use tables <img src='http://diovo.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>There are things that can be done with DIVs, and situations where DIVs work great, but we have to face it. If you want to create a layout with no hacks, tables are the best.</p>
<p>I think a wrote a post about this some months ago:<br />
<a href="http://www.codigomanso.com/en/2009/02/should-i-use-tables-for-layout/" rel="nofollow">http://www.codigomanso.com/en/2009/02/should-i-use-tables-for-layout/</a></p>
<p>Anyway, is like the problem you mentioned with Fibonacci. You can use recursion, but, seriously, if you plan to compute more than the 30th number, what you have to use is a &#8220;for&#8221;. Even if you want only the 10th number.</p>
<p>Really interesting blog, I&#8217;m really enjoying it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niyaz PK</title>
		<link>http://diovo.com/2009/08/done-with-faux-columns/comment-page-1/#comment-1609</link>
		<dc:creator>Niyaz PK</dc:creator>
		<pubDate>Sun, 08 Nov 2009 13:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.diovo.com/?p=870#comment-1609</guid>
		<description>Michel,

I have updated the code to address your concern.</description>
		<content:encoded><![CDATA[<p>Michel,</p>
<p>I have updated the code to address your concern.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stu from Web design and development North London</title>
		<link>http://diovo.com/2009/08/done-with-faux-columns/comment-page-1/#comment-1608</link>
		<dc:creator>Stu from Web design and development North London</dc:creator>
		<pubDate>Wed, 07 Oct 2009 09:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.diovo.com/?p=870#comment-1608</guid>
		<description>I normally try to fix layout problems with CSS, I&#039;ve never actually thought of using a JQuery before. I&#039;ve certainly had the sidebar problem before! Will try this in the future, thanks.</description>
		<content:encoded><![CDATA[<p>I normally try to fix layout problems with CSS, I&#8217;ve never actually thought of using a JQuery before. I&#8217;ve certainly had the sidebar problem before! Will try this in the future, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: P@Computer Services LA</title>
		<link>http://diovo.com/2009/08/done-with-faux-columns/comment-page-1/#comment-1607</link>
		<dc:creator>P@Computer Services LA</dc:creator>
		<pubDate>Sun, 27 Sep 2009 06:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.diovo.com/?p=870#comment-1607</guid>
		<description>Thanks for the pointer. One of my clients encountered this problem and I had to get creative in helping them. Nice to know I wasn&#039;t alone.</description>
		<content:encoded><![CDATA[<p>Thanks for the pointer. One of my clients encountered this problem and I had to get creative in helping them. Nice to know I wasn&#8217;t alone.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

