<?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: CSS In Depth Part 2: Floats &amp; Positions</title>
	<atom:link href="http://spyrestudios.com/css-in-depth-floats-positions/feed/" rel="self" type="application/rss+xml" />
	<link>http://spyrestudios.com/css-in-depth-floats-positions/</link>
	<description>Web-Design And Inspiration Blog</description>
	<lastBuildDate>Wed, 08 Sep 2010 21:51:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Derrick Workman</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-15346</link>
		<dc:creator>Derrick Workman</dc:creator>
		<pubDate>Wed, 07 Apr 2010 23:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-15346</guid>
		<description>I too use floats when coding my sites, but it gave me some new insight into absolute positioning as well.

Another great CSS article, Thanks!</description>
		<content:encoded><![CDATA[<p>I too use floats when coding my sites, but it gave me some new insight into absolute positioning as well.</p>
<p>Another great CSS article, Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anatoly Gilderman</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-15328</link>
		<dc:creator>Anatoly Gilderman</dc:creator>
		<pubDate>Wed, 07 Apr 2010 14:29:48 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-15328</guid>
		<description>Thanks for this very wonderful article. Can&#039;t wait for the next one.

I used to have difficulties in CSS and when I finally realized its importance, I did not stop until I know every single information about it.</description>
		<content:encoded><![CDATA[<p>Thanks for this very wonderful article. Can&#8217;t wait for the next one.</p>
<p>I used to have difficulties in CSS and when I finally realized its importance, I did not stop until I know every single information about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MyInkTrail: Best of the Design Community, March 2010 &#124; MyInkBlog</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-15051</link>
		<dc:creator>MyInkTrail: Best of the Design Community, March 2010 &#124; MyInkBlog</dc:creator>
		<pubDate>Thu, 01 Apr 2010 15:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-15051</guid>
		<description>[...] mixed reviews. It may not be perfect, but it&#8217;s definitely a step in the right direction.&#160;CSS In Depth Part 2: Floats &amp; PositionsThe first part of this series looked at margins, padding &amp; the box model. This second part [...]</description>
		<content:encoded><![CDATA[<p>[...] mixed reviews. It may not be perfect, but it&#8217;s definitely a step in the right direction.&nbsp;CSS In Depth Part 2: Floats &amp; PositionsThe first part of this series looked at margins, padding &amp; the box model. This second part [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: In Depth CSS Part 4: New CSS3 Styles :: Freelance XHTML, CSS and WordPress Developer Amber Weinberg :: Nashville, TN</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-14874</link>
		<dc:creator>In Depth CSS Part 4: New CSS3 Styles :: Freelance XHTML, CSS and WordPress Developer Amber Weinberg :: Nashville, TN</dc:creator>
		<pubDate>Mon, 29 Mar 2010 20:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-14874</guid>
		<description>[...] we talked about margins, padding and the box model. Our second post was on the difference between floats and positions and our third post was all about [...]</description>
		<content:encoded><![CDATA[<p>[...] we talked about margins, padding and the box model. Our second post was on the difference between floats and positions and our third post was all about [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nando</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-14840</link>
		<dc:creator>nando</dc:creator>
		<pubDate>Mon, 29 Mar 2010 14:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-14840</guid>
		<description>Hi Amber, thanks for sharing this great post!</description>
		<content:encoded><![CDATA[<p>Hi Amber, thanks for sharing this great post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ikramhakimi</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-14402</link>
		<dc:creator>ikramhakimi</dc:creator>
		<pubDate>Fri, 19 Mar 2010 03:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-14402</guid>
		<description>hi all,

thanks for the information, I also love float, but
sometimes I don&#039;t float too much. recently i prefer this solution:

.container {
  width: 820px;
  margin: 0 auto;
}

.left {
  float: left;
  width: 400px;
  background: #ccc;
}

.right {
  width: 400px;
  margin-left: 420px;
  background: #ccc;
}

so we will have 20px spacing between .left and .right,

thanks again!</description>
		<content:encoded><![CDATA[<p>hi all,</p>
<p>thanks for the information, I also love float, but<br />
sometimes I don&#8217;t float too much. recently i prefer this solution:</p>
<p>.container {<br />
  width: 820px;<br />
  margin: 0 auto;<br />
}</p>
<p>.left {<br />
  float: left;<br />
  width: 400px;<br />
  background: #ccc;<br />
}</p>
<p>.right {<br />
  width: 400px;<br />
  margin-left: 420px;<br />
  background: #ccc;<br />
}</p>
<p>so we will have 20px spacing between .left and .right,</p>
<p>thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: logolitic</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-14387</link>
		<dc:creator>logolitic</dc:creator>
		<pubDate>Thu, 18 Mar 2010 20:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-14387</guid>
		<description>very interesting and useful information, I`m curently thinking to start learn coding because it`s very useful for me as a designer. 

THanks a lot, you really made me think about it</description>
		<content:encoded><![CDATA[<p>very interesting and useful information, I`m curently thinking to start learn coding because it`s very useful for me as a designer. </p>
<p>THanks a lot, you really made me think about it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kristie</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-14375</link>
		<dc:creator>Kristie</dc:creator>
		<pubDate>Thu, 18 Mar 2010 13:05:25 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-14375</guid>
		<description>Thanks, this is a good refresher.  Whenever I leave web dev for a time, this is the stuff that immediately leaves my head. It&#039;s not all that intuitive I don&#039;t think. 

thanks for your help.</description>
		<content:encoded><![CDATA[<p>Thanks, this is a good refresher.  Whenever I leave web dev for a time, this is the stuff that immediately leaves my head. It&#8217;s not all that intuitive I don&#8217;t think. </p>
<p>thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS in Depth: Floats and Positions &#124; Design Newz</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-14361</link>
		<dc:creator>CSS in Depth: Floats and Positions &#124; Design Newz</dc:creator>
		<pubDate>Wed, 17 Mar 2010 23:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-14361</guid>
		<description>[...] CSS in Depth: Floats and Positions [...]</description>
		<content:encoded><![CDATA[<p>[...] CSS in Depth: Floats and Positions [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amber Weinberg</title>
		<link>http://spyrestudios.com/css-in-depth-floats-positions/#comment-14358</link>
		<dc:creator>Amber Weinberg</dc:creator>
		<pubDate>Wed, 17 Mar 2010 20:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7310#comment-14358</guid>
		<description>@Jan That&#039;s interesting that you prefer to position your elements over floating. To me, it&#039;s better to float because it plays nicer when expanding content and using repeated bkg images..but that&#039;s just my experience :P

I&#039;m not sure I understand though, what you mean about abusing text properties because of layout?</description>
		<content:encoded><![CDATA[<p>@Jan That&#8217;s interesting that you prefer to position your elements over floating. To me, it&#8217;s better to float because it plays nicer when expanding content and using repeated bkg images..but that&#8217;s just my experience :P</p>
<p>I&#8217;m not sure I understand though, what you mean about abusing text properties because of layout?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
