<?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>webdesign women &#187; HTML</title>
	<atom:link href="http://www.webdesign-women.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdesign-women.com</link>
	<description>we design the web!</description>
	<lastBuildDate>Tue, 25 Oct 2011 12:24:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HTML and CSS for Multi Column Layouts 1</title>
		<link>http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/</link>
		<comments>http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 16:46:44 +0000</pubDate>
		<dc:creator>odras</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Multi Column Layout]]></category>

		<guid isPermaLink="false">http://www.webdesign-women.com/?p=24</guid>
		<description><![CDATA[A simple solution with Faux Columns Professional web-designs often come along with a so-called multi column layout. Using the table-tags for displaying such a layout is outdated for years since for reasons of accessibility  it is recommended to use the table-tag(s) only for displaying table and not for structuring the design of a website. In &#8230; <a href="http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>A simple solution with Faux Columns</h3>
<p>Professional web-designs often come along with a so-called multi column layout. Using the table-tags for displaying such a layout is outdated for years since for reasons of accessibility  it is recommended to use the table-tag(s) only for displaying table and not for structuring the design of a website.</p>
<p>In this little workshop I am going to show you how you can manage to realize a multi column layout (in our case three columns) without the obsolete table-construction.</p>
<p>So, lets first think about how we want to structure our website. Lets say we choose to build a website with a header and a footer, of course a part for the main content and two sidebars. One of these sidebars we will use to display our site-navigation, the other sidebar we can use for additional information, links  and other services.</p>
<p>At first we set up a struture for header, footer and content in HTML.</p>
<hr />
<pre style="padding-left: 30px"><span style="color: #99cc00">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt;
 &lt;head&gt;
 &lt;title&gt;My MultiColumnLayout&lt;/title&gt;
 &lt;style type="text/css"&gt;
 body{
 font-family:verdana, arial;
 color:white;
 text-align:center; /*workaround for IE6 for centered page*/
 }

 #container{
 width:960px;
 background-color: grey;
 margin:auto;
 text-align:left;    /*resets workaround for IE6*/
 }

 #header    {
 width:940px;
 height:150px;
 margin: 0px 10px;
 background-color:green;
 }

 #content{
 width:940px;
 min-height:350px;
 margin: 0px 10px;
 }

 #footer    {
 width:940px;
 height:80px;
 margin:0px 10px;
 background-color:blue;
 }
 &lt;/style&gt;
 &lt;/head&gt;
 &lt;body&gt;
 &lt;div id="container"&gt;
 &lt;div id="header"&gt;
 This is my header
 &lt;/div&gt;&lt;!-- header end--&gt;
 &lt;div id="content"&gt;
 &lt;div id="sidebar_left"&gt;
 This is my left sidebar
 &lt;/div&gt;&lt;!--sidebar_left end--&gt;
 &lt;div id="mainContent"&gt;
 This is my main Content
 &lt;/div&gt;&lt;!--mainContent end--&gt;
 &lt;div id="sidebar_right"&gt;
 This is my right sidebar
 &lt;/div&gt;&lt;!-- sidebar_right end --&gt;
 &lt;/div&gt;&lt;!-- content end --&gt;
 &lt;div id="footer"&gt;
 This is my footer
 &lt;/div&gt;&lt;!-- footer end --&gt;
 &lt;/div&gt;&lt;!-- container end--&gt;
 &lt;/body&gt;
&lt;/html&gt;</span></pre>
<hr /><a href="wp-content/uploads/2010/03/1-1-basic-structure.html" target="_blank"> Have a look</a></p>
<p>I have already added some style-information into this code. In this case I chose to include the style sheet in our HTML-head, of course you can also create a separate style sheet which you can include by using the link-tag :</p>
<pre style="padding-left: 30px"><span style="color: #99cc00">&lt;link rel="stylesheet" href="mystyle.css" type="text/css" media="screen" /&gt;  </span></pre>
<p>Do not forget to close the link-tag if you want to create a website in valid XHTML!</p>
<p>Now, lets see what this stylesheet is doing to our layout.</p>
<p>Our Elements:</p>
<p>#container<br />
#header<br />
#content<br />
#footer</p>
<p>all contain a background-color definition and a height to give you a visual impression. These selector refer to ID-elements. ID&#8217;s are used for elements that are used only once on a single web-page while classes also can be used for several elements on the same page. In CSS ID&#8217;s are labelled by # while the label . is used for classes.</p>
<p>The #container-div encloses the divs #header, #content and #footer or the other way around, #header, #content and #footer are nested into the #container-div.</p>
<p>The #container-div is responsible for giving our website a certain background und position. In our case we decided to use a pixel-based width &#8211; that means the width is always the same &#8211; no matter what the visitors browser-view-port is. Of course you can also define a flexible width depending on the browser-view-port by using percentage-values instead of pixels, but this can cause trouble if you wish to create a multi column layout with different background-colors for you columns. In a later lesson I will show you how to solve problems like these, but for now we will work with this fix-width-layout.</p>
<p>This property and value &#8220;margin:auto;&#8221; forces the browser to display the web-page (#container) in the middle of the visitors browser-view-port. For elder versions of the Internet Explorer e.i.  margin:auto does not work, therefore we need to include the property &#8220;text-align&#8221; into the body-selector in our CSS-file. To prevent text-elements from being displayed centered in our page-section we need to reset this property in our #container and define text-align:left;.</p>
<p>Not very difficult so far&#8230; Now lets see how to create the famous multi-columns in our layout. For this we need to add some more style-information.</p>
<p>In our HTML-template we have already included the divs #sidebar_left, #mainContent and #sidebar_right, which are nested into our #content-div. Now we will go on and make these three divs display next to each other.</p>
<p>First we need to think about the width of each of our columns. We have a total width of 940px for our #content-div. Lets say our sidebars will get a width of 220px, the left sidebar gets a right margin of 10px and the right sidebar gets a left margin of 10px. All together we now have a width of 440px plus 20px for margins for our sidebars. That means there is a 480px width left for our mainContent. For displaying the columns next to each other we need to float them. Lets define these in our style sheet:</p>
<pre style="padding-left: 30px"><span style="color: #99cc00">#sidebar_left    {
 width:220px;
 margin-right:10px;
 float:left;
 color: green;
 }

#mainContent    {
 width:480px;
 float:left;
 color:brown;
 }

#sidebar_right    {width:220px;
 margin-left:10px;
 color:navy;
 float:left;
 }</span></pre>
<p><a href="wp-content/uploads/2010/03/1-2-sidebar-structure.html" target="_blank">Have a look</a></p>
<p>Doesn&#8217;t look bad that far&#8230;</p>
<p>Now, lets see what happens if we have more content than on single line and add some random text-snippets and see what happens:</p>
<p><a href="wp-content/uploads/2010/03/1-3-sidebar-structure-with-txt.html" target="_blank">Have a look</a></p>
<p>The text flows over our footer &#8211; this is not, what we intended to see. Solving this is very simple. You need to clear the floatings of the sidebars and the mainContent by adding the clear-property to our #footer-selector in our style sheet:</p>
<pre style="padding-left: 30px"><span style="color: #99cc00">#footer    {
 width:940px;
 height:80px;
 margin:0px 10px;
 background-color:blue;
 clear:both;
 }</span></pre>
<p>Alternatively it&#8217;s possible to add a specific class for clearing floated divs:</p>
<pre style="padding-left: 30px"><span style="color: #99cc00">.clearer    {clear:both;}</span></pre>
<p><a href="wp-content/uploads/2010/03/1-4-sidebar-structure-footer-cleared.html" target="_blank">See, what this brings</a></p>
<p>Good so far&#8230; But now lets try to add some background-colors to our columns. Lets try to make our left sidebar yellow, our mainContent orange and our right sidebar white and add the needed background-color-definition to our columns:</p>
<pre style="padding-left: 30px"><span style="color: #99cc00">#sidebar_left    {
 width:220px;
 margin-right:10px;
 float:left;
 color: green;
 background-color:yellow;
 }

#mainContent    {
 width:480px;
 float:left;
 color:brown;
 background-color:orange;
 }

#sidebar_right    {width:220px;
 margin-left:10px;
 color:navy;
 float:left;
 background-color:white;
 }</span></pre>
<p><a href="wp-content/uploads/2010/03/1-5-sidebar-structure-colored-cols.html" target="_blank">Now it looks like this</a></p>
<p>Not what we wanted to see&#8230;<br />
The most simple way to give our columns different background-colors anyway  the usage of a background-image  that simulates the background-colors for us (Faux Columns). We include this into our #container-div:</p>
<pre style="padding-left: 30px"><span style="color: #99cc00">#container{
 width:960px;
 margin:auto;
 text-align:left;    /*resets workaround for IE6  */
 background-image:url(bg.gif);
 background-repeat:repeat-y;
 }</span></pre>
<p>The <a href="wp-content/uploads/2010/03/bg.gif" target="_blank">background-image</a> is a graphic of 960px width and 1px height. The vertical repeat of the image suggests different background-colors for each column.</p>
<p><a href="wp-content/uploads/2010/03/1-6-sidebar-structure-colored-cols-solved.html" target="_blank">Have a look</a></p>
<p>This really simple multi column solution works in all common browsers. Enjoy!</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-designbump">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=282&amp;tags=&amp;ctype=" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=HTML+and+CSS+for+Multi+Column+Layouts+1&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=HTML%20and%20CSS%20for%20Multi%20Column%20Layouts%201&amp;link=http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/&amp;notes=A%20simple%20solution%20with%20Faux%20Columns%0D%0AProfessional%20web-designs%20often%20come%20along%20with%20a%20so-called%20multi%20column%20layout.%20Using%20the%20table-tags%20for%20displaying%20such%20a%20layout%20is%20outdated%20for%20years%20since%20for%20reasons%20of%20accessibility%C2%A0%20it%20is%20recommended%20to%20use%20the%20table-tag%28s%29%20only%20for%20displaying%20table%20and%20no&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-women.com/html-and-css-for-multi-column-layouts-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

