<?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: A gentle introduction to CSS3 Flexible Box Module (Part 1)</title>
	<atom:link href="http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/</link>
	<description>Web, design, and web design</description>
	<lastBuildDate>Thu, 10 Jun 2010 17:30:04 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: How-To: Full Page CSS 3 Layout (Desktop) &#171; Appcelerator Developer Center</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-166063</link>
		<dc:creator>How-To: Full Page CSS 3 Layout (Desktop) &#171; Appcelerator Developer Center</dc:creator>
		<pubDate>Thu, 10 Jun 2010 17:30:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-166063</guid>
		<description>[...] we&#8217;ll take a look at how to employ CSS 3 Box Layouts- check out some brief tutorials here and here. Using a few lines of CSS, we can create a flexible fullscreen layout that automatically resizes [...]</description>
		<content:encoded><![CDATA[<p>[...] we&#8217;ll take a look at how to employ CSS 3 Box Layouts- check out some brief tutorials here and here. Using a few lines of CSS, we can create a flexible fullscreen layout that automatically resizes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Implementation: Facebook for webOS Add Tag UI - incaseofstairs</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-165888</link>
		<dc:creator>Implementation: Facebook for webOS Add Tag UI - incaseofstairs</dc:creator>
		<pubDate>Fri, 04 Jun 2010 22:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-165888</guid>
		<description>[...] was out of the scope of this post I would recommend reading some of the other excellent sources on this topic as well as the specification [...]</description>
		<content:encoded><![CDATA[<p>[...] was out of the scope of this post I would recommend reading some of the other excellent sources on this topic as well as the specification [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-165345</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Fri, 14 May 2010 22:51:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-165345</guid>
		<description>It&#039;s coming! They&#039;re changing the draft though, so I&#039;m waiting for that to happen; I may even need to revise Part 1 a bit. We&#039;ll see.</description>
		<content:encoded><![CDATA[<p>It&#8217;s coming! They&#8217;re changing the draft though, so I&#8217;m waiting for that to happen; I may even need to revise Part 1 a bit. We&#8217;ll see.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alper</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-165341</link>
		<dc:creator>Alper</dc:creator>
		<pubDate>Fri, 14 May 2010 22:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-165341</guid>
		<description>Eagerly waiting for part 2, Stephen!</description>
		<content:encoded><![CDATA[<p>Eagerly waiting for part 2, Stephen!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-163773</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Thu, 18 Mar 2010 21:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-163773</guid>
		<description>There are several ways you could do this, but let&#039;s say you just absolutely want to use flexbox somehow and have only labels and input fields to use. In your example, if you used the elements in this order:
&lt;ol&gt;
	&lt;li&gt;label 1&lt;/li&gt;
	&lt;li&gt;input 1&lt;/li&gt;
	&lt;li&gt;label 2&lt;/li&gt;
	&lt;li&gt;input 2&lt;/li&gt;
&lt;/ol&gt;
then you could set the display of the labels to &lt;em&gt;box&lt;/em&gt; (-moz-box or -webkit-box) and give them a width, as well as the form itself.

For example, set the form to, say, 600px, then the labels to width:50% and &lt;code&gt;display:-moz-box&lt;/code&gt;. That works just fine (at least when I tried it in Firefox), but then, doing the same with &lt;code&gt;display:inline-block&lt;/code&gt; works just as well, so flexbox is not really giving you any advantage here.

This method is a simple starting point for some forms, depending on the content and structure of the code.</description>
		<content:encoded><![CDATA[<p>There are several ways you could do this, but let&#8217;s say you just absolutely want to use flexbox somehow and have only labels and input fields to use. In your example, if you used the elements in this order:</p>
<ol>
<li>label 1</li>
<li>input 1</li>
<li>label 2</li>
<li>input 2</li>
</ol>
<p>then you could set the display of the labels to <em>box</em> (-moz-box or -webkit-box) and give them a width, as well as the form itself.</p>
<p>For example, set the form to, say, 600px, then the labels to width:50% and <code>display:-moz-box</code>. That works just fine (at least when I tried it in Firefox), but then, doing the same with <code>display:inline-block</code> works just as well, so flexbox is not really giving you any advantage here.</p>
<p>This method is a simple starting point for some forms, depending on the content and structure of the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Axel Rauschmayer</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-163671</link>
		<dc:creator>Axel Rauschmayer</dc:creator>
		<pubDate>Tue, 16 Mar 2010 17:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-163671</guid>
		<description>How about aligning one row with another one (as you would have to do when layouting forms)? For example:
    label1 textbox1
    label2 textbox2
If one lays out the rows with hboxes, can label1 and label2 be aligned?</description>
		<content:encoded><![CDATA[<p>How about aligning one row with another one (as you would have to do when layouting forms)? For example:<br />
    label1 textbox1<br />
    label2 textbox2<br />
If one lays out the rows with hboxes, can label1 and label2 be aligned?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-162440</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Wed, 17 Feb 2010 08:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-162440</guid>
		<description>@saars: Thanks for catching my oversight. I&#039;ve updated the post and the demo accordingly. :)</description>
		<content:encoded><![CDATA[<p>@saars: Thanks for catching my oversight. I&#8217;ve updated the post and the demo accordingly. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saars</title>
		<link>http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/comment-page-1/#comment-162392</link>
		<dc:creator>saars</dc:creator>
		<pubDate>Tue, 16 Feb 2010 10:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.the-haystack.com/?p=182#comment-162392</guid>
		<description>It is already included in webkit/safari/chrome. You need to use -webkit- prefix, but it&#039;s all there. And it&#039;s good! Flexible-box is the perfect way to do application/ui layout.</description>
		<content:encoded><![CDATA[<p>It is already included in webkit/safari/chrome. You need to use -webkit- prefix, but it&#8217;s all there. And it&#8217;s good! Flexible-box is the perfect way to do application/ui layout.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
