<?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: SimpleQuiz &#8250; Part XI &#8250; Image Floating</title>
	<atom:link href="http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/feed/" rel="self" type="application/rss+xml" />
	<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/</link>
	<description>Handcrafted pixels &#38; text from Salem, Massachusetts.</description>
	<lastBuildDate>Tue, 08 Dec 2009 23:15:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Anonymous</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1840</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 20 Sep 2005 12:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1840</guid>
		<description>#81 – I don’t think there is any semantic meaning for a Div – It’s an empty element.
It does seem weird using a DL simply because there is only one thing in the list. However, there doesn’t seem to be a perfect alternative so this is what I go for.
DT would contain the definition term (either the image or its ALT attribute) and the DD would be it’s definition in this case a description
The Label option sounds good but I think it is really meant for form controls (http://www.w3schools.com/tags/tag_label.asp).
</description>
		<content:encoded><![CDATA[<p>#81 – I don’t think there is any semantic meaning for a Div – It’s an empty element.<br />
It does seem weird using a DL simply because there is only one thing in the list. However, there doesn’t seem to be a perfect alternative so this is what I go for.<br />
DT would contain the definition term (either the image or its ALT attribute) and the DD would be it’s definition in this case a description<br />
The Label option sounds good but I think it is really meant for form controls (<a href="http://www.w3schools.com/tags/tag_label.asp" rel="nofollow">http://www.w3schools.com/tags/tag_label.asp</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Rehm</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1839</link>
		<dc:creator>Bill Rehm</dc:creator>
		<pubDate>Tue, 16 Aug 2005 19:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1839</guid>
		<description>I&#039;m struggling with this issue right now myself. My problem with C above is that a list of one is not a list. If the W3C spec provided for using &lt;dt&gt; and &lt;dd&gt; outside of &lt;dl&gt;, I&#039;d embrace it.
I tentatively vote for the &lt;label&gt; solution above, but think it unworkable because of the sizing issue for floated divs.
This leads me to a general question: what is the semantic meaning conveyed by &lt;div&gt;?
</description>
		<content:encoded><![CDATA[<p>I&#8217;m struggling with this issue right now myself. My problem with C above is that a list of one is not a list. If the W3C spec provided for using &lt;dt&gt; and &lt;dd&gt; outside of &lt;dl&gt;, I&#8217;d embrace it.<br />
I tentatively vote for the &lt;label&gt; solution above, but think it unworkable because of the sizing issue for floated divs.<br />
This leads me to a general question: what is the semantic meaning conveyed by &lt;div&gt;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FataL</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1838</link>
		<dc:creator>FataL</dc:creator>
		<pubDate>Fri, 27 May 2005 00:43:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1838</guid>
		<description>First of all, any of options (A, B or C) we can&#039;t put inside paragraph, because it not validates with XHTML doctype. So, these options not universal, because some times authors need to put pictures &lt;em&gt;inside&lt;/em&gt; paragraphs.
We only can do this:
&lt;code&gt;&lt;p&gt;Paragraph 1&lt;/p&gt;
&lt;strong&gt;[option A, B or C]&lt;/strong&gt;
&lt;p&gt;Paragraph 2&lt;/p&gt;&lt;/code&gt;
not that:
&lt;code&gt;&lt;p&gt;Paragraph 1 &lt;strong&gt;[option A, B or C]&lt;/strong&gt; Paragraph 1&lt;/p&gt;
&lt;p&gt;Paragraph 2&lt;/p&gt;&lt;/code&gt;
I found some universality and semantic in this markup:
&lt;code&gt;&lt;p&gt;Paragraph 1 &lt;strong&gt;&lt;label for=&quot;pic1&quot;&gt;&lt;img /&gt;&lt;span class=&quot;caption&quot;&gt;Caption 1&lt;/span&gt;&lt;/label&gt;&lt;/strong&gt; Paragraph 1&lt;/p&gt;&lt;/code&gt;
</description>
		<content:encoded><![CDATA[<p>First of all, any of options (A, B or C) we can&#8217;t put inside paragraph, because it not validates with XHTML doctype. So, these options not universal, because some times authors need to put pictures <em>inside</em> paragraphs.<br />
We only can do this:<br />
<code>&lt;p&gt;Paragraph 1&lt;/p&gt;<br />
<strong>[option A, B or C]</strong><br />
&lt;p&gt;Paragraph 2&lt;/p&gt;</code><br />
not that:<br />
<code>&lt;p&gt;Paragraph 1 <strong>[option A, B or C]</strong> Paragraph 1&lt;/p&gt;<br />
&lt;p&gt;Paragraph 2&lt;/p&gt;</code><br />
I found some universality and semantic in this markup:<br />
<code>&lt;p&gt;Paragraph 1 <strong>&lt;label for=&quot;pic1&quot;&gt;&lt;img /&gt;&lt;span class=&quot;caption&quot;&gt;Caption 1&lt;/span&gt;&lt;/label&gt;</strong> Paragraph 1&lt;/p&gt;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1837</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Tue, 31 Aug 2004 23:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1837</guid>
		<description>Dispite the fact that the &lt;label&gt;  [see comment #69] tag was created for texboxes (and other form elements, I guess) I think it&#039;s the most semantically correct, but not perfect.
&lt;label&gt; seems awful close to &lt;caption&gt; to me.
</description>
		<content:encoded><![CDATA[<p>Dispite the fact that the &lt;label&gt;  [see comment #69] tag was created for texboxes (and other form elements, I guess) I think it&#8217;s the most semantically correct, but not perfect.<br />
&lt;label&gt; seems awful close to &lt;caption&gt; to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tero</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1836</link>
		<dc:creator>Tero</dc:creator>
		<pubDate>Mon, 30 Aug 2004 16:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1836</guid>
		<description>Just came across a strong (IMO) argument against the DIV option (b) in a form of a client who insists on having Mac IE 5 among the supported browsers.
In a floated layout floating DIVs with no width CSS attribute set seem to always have width of 100%. Haven&#039;t been able to go round this.
Almost wants me to go to a two-row TABLE with images/captions. Almost... With single-paragraph captions, option A seems to work with least hassle.
</description>
		<content:encoded><![CDATA[<p>Just came across a strong (IMO) argument against the DIV option (b) in a form of a client who insists on having Mac IE 5 among the supported browsers.<br />
In a floated layout floating DIVs with no width CSS attribute set seem to always have width of 100%. Haven&#8217;t been able to go round this.<br />
Almost wants me to go to a two-row TABLE with images/captions. Almost&#8230; With single-paragraph captions, option A seems to work with least hassle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jano</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1835</link>
		<dc:creator>Jano</dc:creator>
		<pubDate>Sun, 15 Aug 2004 17:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1835</guid>
		<description>I dont think generating :after with any attribute of the image as content is a good choice. The caption is not a design thing, it is not something that can be left if CSS is not supported well. Think on text browsers! Caption is content and not a meta or alternative element.
</description>
		<content:encoded><![CDATA[<p>I dont think generating :after with any attribute of the image as content is a good choice. The caption is not a design thing, it is not something that can be left if CSS is not supported well. Think on text browsers! Caption is content and not a meta or alternative element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1834</link>
		<dc:creator>Karl</dc:creator>
		<pubDate>Thu, 29 Jul 2004 01:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1834</guid>
		<description>I&#039;ve got a further wrench to throw into the works....
How do you set up one of these elements so one of your users using Contribute can ad the photo with caption as he pleases to the pages?...
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got a further wrench to throw into the works&#8230;.<br />
How do you set up one of these elements so one of your users using Contribute can ad the photo with caption as he pleases to the pages?&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark panay</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1833</link>
		<dc:creator>mark panay</dc:creator>
		<pubDate>Wed, 07 Apr 2004 21:40:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1833</guid>
		<description>Having used C and B for different commercial projects. I&#039;m absolutley amazed that I didn&#039;t think of doing the method in post 69. I think thats the one to try for me next. Semantic, valid and simple. Thanks a lot for pointing out the obvious.
</description>
		<content:encoded><![CDATA[<p>Having used C and B for different commercial projects. I&#8217;m absolutley amazed that I didn&#8217;t think of doing the method in post 69. I think thats the one to try for me next. Semantic, valid and simple. Thanks a lot for pointing out the obvious.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Ulloa</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1832</link>
		<dc:creator>Juan Ulloa</dc:creator>
		<pubDate>Tue, 10 Feb 2004 02:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1832</guid>
		<description>Isn&#039;t the use of the caption element reserved for datatables?  I would hesitate in using a table wiht the caption tag for these purposes.
I personally would go with &#039;C&#039;.  I guess you can say that an image and it&#039;s caption are a definition list. But in practice I would go with B, minus the &lt;p&gt; tags...depeding on how my style sheets are set.
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t the use of the caption element reserved for datatables?  I would hesitate in using a table wiht the caption tag for these purposes.<br />
I personally would go with &#8216;C&#8217;.  I guess you can say that an image and it&#8217;s caption are a definition list. But in practice I would go with B, minus the
</p><p> tags&#8230;depeding on how my style sheets are set.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Clark</title>
		<link>http://simplebits.com/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1831</link>
		<dc:creator>Joe Clark</dc:creator>
		<pubDate>Tue, 20 Jan 2004 19:52:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplebits.com/wp/notebook/2004/01/02/simplequiz-part-xi-image-floating/#comment-1831</guid>
		<description>It will exclusively be revealed that not only do I use single-cell tables with the &lt;caption&gt; element for this purpose, I do it so often I have a macro set up in BBEdit.
Of course, I also use the &lt;dl&gt; approach, but I am too much of a piker to know how to float things around a page.
</description>
		<content:encoded><![CDATA[<p>It will exclusively be revealed that not only do I use single-cell tables with the &lt;caption&gt; element for this purpose, I do it so often I have a macro set up in BBEdit.<br />
Of course, I also use the &lt;dl&gt; approach, but I am too much of a piker to know how to float things around a page.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

