<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1032950" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1032950</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192828</link>
    <description> &lt;p&gt;Remember to check this is all your target browsers.  CSS was not fully developed in some older browsers so if that is your target market you will want to confirm your solution works.  May take some tweaking here and there.&lt;/p&gt;
 </description>
     <pubDate>Tue, 07 Feb 2006 18:56:40 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1192828 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192807</link>
    <description> &lt;p&gt;yeah, rob... you should clear them if you add a footer...&lt;/p&gt;
 </description>
     <pubDate>Tue, 07 Feb 2006 17:03:43 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1192807 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192784</link>
    <description> &lt;p&gt;If you need to add a footer, won&#039;t you need to put those four columns in a container with a clearFloat class too?&lt;/p&gt;
&lt;p&gt;--They would overlap with absolute positioning...  I think.&lt;/p&gt;
 </description>
     <pubDate>Tue, 07 Feb 2006 14:16:07 +0000</pubDate>
 <dc:creator>robbluther</dc:creator>
 <guid isPermaLink="false">comment 1192784 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192763</link>
    <description> &lt;p&gt;i never understand stuff like this, i mean to me that code would just place 4 things on top of each other, since they are all the same - CSS is weird &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/tongue.png&quot; title=&quot;Sticking out tongue&quot; alt=&quot;Sticking out tongue&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 07 Feb 2006 04:37:20 +0000</pubDate>
 <dc:creator>DaveyBoy</dc:creator>
 <guid isPermaLink="false">comment 1192763 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192761</link>
    <description> &lt;p&gt;Yes! Thank you!&lt;/p&gt;
&lt;p&gt;When I was trying to do this, I would use float: right for the right-most column, and the middle column was always unpredictable.&lt;/p&gt;
&lt;p&gt;So I see in your example you use float: left for all the columns... that solved everything! Thanks Demon&lt;/p&gt;
 </description>
     <pubDate>Tue, 07 Feb 2006 04:21:16 +0000</pubDate>
 <dc:creator>Anita.Bonghit</dc:creator>
 <guid isPermaLink="false">comment 1192761 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192752</link>
    <description> &lt;p&gt;hmmm.... go to a-list-apart ALA site theres some example there...&lt;/p&gt;
&lt;p&gt;or its like this, if I make it for you:&lt;/p&gt;
&lt;p&gt;	#column1 {&lt;br /&gt;
		width:25%;&lt;br /&gt;
		float:left;&lt;br /&gt;
		background:#fff;&lt;br /&gt;
		padding-bottom:10px;&lt;br /&gt;
		}&lt;/p&gt;
&lt;p&gt;	#column2 {&lt;br /&gt;
		width:25%;&lt;br /&gt;
		float:left;&lt;br /&gt;
		background:#fff;&lt;br /&gt;
		padding-bottom:10px;&lt;br /&gt;
		}&lt;/p&gt;
&lt;p&gt;	#column3 {&lt;br /&gt;
		width:25%;&lt;br /&gt;
		float:left;&lt;br /&gt;
		background:#fff;&lt;br /&gt;
		padding-bottom:10px;&lt;br /&gt;
		}&lt;/p&gt;
&lt;p&gt;	#column4 {&lt;br /&gt;
		width:25%;&lt;br /&gt;
		float:left;&lt;br /&gt;
		background:#fff;&lt;br /&gt;
		padding-bottom:10px;&lt;br /&gt;
		}&lt;/p&gt;
&lt;p&gt;if you want borders around the table add border: #000 1px solid; to the css&lt;/p&gt;
 </description>
     <pubDate>Tue, 07 Feb 2006 02:56:43 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1192752 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192751</link>
    <description> &lt;p&gt;thanks but no. let me be more specific:&lt;/p&gt;
&lt;p&gt;Imagine you have a table, one row, 4 columns.&lt;br /&gt;
The table width is 100%&lt;br /&gt;
Each column width is 25%&lt;/p&gt;
&lt;p&gt;Now how could I code a style sheet to do this, without actually using a table in my html?&lt;/p&gt;
&lt;p&gt;TIA!&lt;/p&gt;
 </description>
     <pubDate>Tue, 07 Feb 2006 02:40:26 +0000</pubDate>
 <dc:creator>Anita.Bonghit</dc:creator>
 <guid isPermaLink="false">comment 1192751 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192684</link>
    <description> &lt;p&gt;&lt;a href=&quot;http://tools.i-use.it/&quot; class=&quot;bb-url&quot;&gt;http://tools.i-use.it/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;that&#039;s a pretty neat page to try too &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 06 Feb 2006 09:50:25 +0000</pubDate>
 <dc:creator>DaveyBoy</dc:creator>
 <guid isPermaLink="false">comment 1192684 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/multicolumn-fluid-layout-css#comment-1192680</link>
    <description> &lt;p&gt;Take a look at this site &lt;a href=&quot;http://www.pixy.cz/blogg/clanky/css-3col-layout/&quot; class=&quot;bb-url&quot;&gt;http://www.pixy.cz/blogg/clanky/css-3col-layout/&lt;/a&gt;&lt;br /&gt;
that the sort of thing your after?&lt;/p&gt;
 </description>
     <pubDate>Mon, 06 Feb 2006 09:36:50 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1192680 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
