<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1037132" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1037132</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213347</link>
    <description> &lt;p&gt;I&#039;m not surprised they are considering that. Seems inline with the general direction of xHTML 2. I also try to limit the number of div&#039;s, although I haven&#039;t had time to really optimize the code on the sites I work on. I probably spend too much time as it is figuring out what the exact proper mark-up is!&lt;/p&gt;
 </description>
     <pubDate>Thu, 11 Jan 2007 20:04:29 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1213347 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213332</link>
    <description> &lt;p&gt;No it shouldn&#039;t, because a header would deduce that we are having a new section which is not applicable in forms. This is because the legend takes care of it.&lt;/p&gt;
&lt;p&gt;I was speaking generally about replacing tables with divs. You can eliminate divs entirely if you take a while to develop your design. I have managed to use a very little amount of divs (3 or 4) on my site and it still renders well in all browsers.&lt;/p&gt;
&lt;p&gt;I can&#039;t remember or seem to currently find the article that the W3C aims to deprecate the use of span and div in their future docs. However, I do remember that it was only an &#039;idea&#039; of theirs. I will endeavour to find this article.&lt;/p&gt;
 </description>
     <pubDate>Thu, 11 Jan 2007 18:56:13 +0000</pubDate>
 <dc:creator>mik-crap</dc:creator>
 <guid isPermaLink="false">comment 1213332 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213326</link>
    <description> &lt;p&gt;Well, if we&#039;re critiquing code, shouldn&#039;t a strong paragraph be a header? &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Do you have any documentation for what you said on legend? The spec just says that it&#039;s a caption for a fieldset. Using a shorter heading makes sense, but I wouldn&#039;t want that extra part to display, since I&#039;ve already defined that with a header prior to the fieldset.  Eh, okay, I guess you&#039;re right. Legend goes...&lt;/p&gt;
&lt;p&gt;Edit: &lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;me wrote:&lt;/strong&gt;  Alternately, would it be correct to place the question inside a  and leave the legend out?&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt; Duh (to self). I said that in the first place... and from looking at the spec that makes more sense.&lt;/p&gt;
&lt;p&gt;What are you referring to in the last section? I definitely didn&#039;t replace any tables with div&#039;s. I do have a div wrapper around the poll, is that what you were referring to? I did that so I could apply custom formatting to that section, although I suppose I could put the id in the form. Why did you think I was replacing tables with divisions? &lt;/p&gt;
&lt;p&gt;Where did you hear that the W3C is thiinking of destroying divisions and spans? That&#039;s interesting. I know that  is depreciated in xHTML 2.0, and I personally don&#039;t have much use for span. Div&#039;s I do try to keep to a minimum but I don&#039;t see how you could eliminate them entirely.&lt;/p&gt;
 </description>
     <pubDate>Thu, 11 Jan 2007 18:24:33 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1213326 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213304</link>
    <description> &lt;p&gt;You&#039;re using your legend element incorrectly anyway. Legend is used to short-define a section of a fieldset. It is not meant to be used to pose a question.&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;form method=&amp;quot;post&amp;quot; action=&amp;quot;index_new.php&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fieldset&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;legend&amp;gt;Poll:&amp;lt;/legend&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;State your question here, then style it. You can always set legend to display: none if you don&amp;#039;t want the title to be shown.&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;option_id&amp;quot; value=&amp;quot;1&amp;quot; id=&amp;quot;option1&amp;quot; /&amp;gt; &amp;lt;label for=&amp;quot;option1&amp;quot;&amp;gt;Prospective UW Student&amp;lt;/label&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fieldset&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
Simply use a paragraph to state the question. The release of CSS3 and new XHTML/HTML should hopefully give us better elements (e.g. ).&lt;/p&gt;
&lt;p&gt;Oh, and one thing. Don&#039;t replace tables with divisions. The W3C is looking to destroying div and span because it has simply replaced the non-semantic use of tables with divs. Use the appropriate HTML elements to contain your data then style that. If you find it is not working as it should, then use divs to give it a boost.&lt;/p&gt;
 </description>
     <pubDate>Thu, 11 Jan 2007 15:54:22 +0000</pubDate>
 <dc:creator>mik-crap</dc:creator>
 <guid isPermaLink="false">comment 1213304 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213254</link>
    <description> &lt;p&gt;I know mozilla had issues with it and Opera didn&#039;t support it some versions ago&lt;/p&gt;
 </description>
     <pubDate>Wed, 10 Jan 2007 22:50:25 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1213254 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213211</link>
    <description> &lt;p&gt;From what I can find out, legend is not support by Netscape 4. However, on a quick test it does diplay the text in my legend tag when it is wrapped in the&lt;br /&gt;
&lt;h5&gt;.&lt;/h5&gt;&lt;/p&gt;
&lt;p&gt;I haven&#039;t found anything definitive but I also haven&#039;t found anything to say that  is &lt;em&gt;not&lt;/em&gt; supported by modern browsers.&lt;/p&gt;
 </description>
     <pubDate>Tue, 09 Jan 2007 21:11:27 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1213211 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213210</link>
    <description> &lt;p&gt;WCAG recommends grouping forms with fieldset and legend: &lt;a href=&quot;http://www.w3.org/TR/WCAG10-HTML-TECHS/#grouping&quot; class=&quot;bb-url&quot;&gt;http://www.w3.org/TR/WCAG10-HTML-TECHS/#grouping&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Should all forms, even with one group have a fieldset? The validator says that they must be contained in something. Fielset makes more sense than a div.&lt;/p&gt;
&lt;p&gt;... continuing research on support for legend...&lt;/p&gt;
 </description>
     <pubDate>Tue, 09 Jan 2007 21:00:07 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1213210 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213209</link>
    <description> &lt;p&gt;Setting a width on a containing div did not help. A  inside the title would not be an ideal solution - first of all that&#039;s not ideal in terms of page structure. Secondly, it would have to be entered in every poll title. Thirdly, it could break the layout if text is made larger.&lt;/p&gt;
&lt;p&gt;I am under the impression that legend and fieldset are important for proper form structure - I&#039;ll have to do some research to see if that&#039;s true or not. Adding extra div&#039;s would certainly not be appropriate (extra unnecessary divs should be avoided at all times IMO)&lt;/p&gt;
&lt;p&gt;Will also do some research on support for  - I&#039;m assuming it&#039;s  only old browsers that don&#039;t support it but I could be wrong on that...&lt;/p&gt;
 </description>
     <pubDate>Tue, 09 Jan 2007 20:51:10 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1213209 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213208</link>
    <description> &lt;p&gt;isn&#039;t fully supported by all browsers, use a  if it&#039;s a fixed width or try contain the fieldset in a  or &lt;/p&gt;
&lt;p&gt;Just looked at your page, you don&#039;t need to use legend or fieldset there, just use div&#039;s&lt;/p&gt;
&lt;p&gt;Tables are always right &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 09 Jan 2007 20:43:36 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1213208 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/getting-text-wrap-legend#comment-1213206</link>
    <description> &lt;p&gt;Update: I solved the problem by putting an&lt;br /&gt;
&lt;h5&gt; tag inside the . I think that&#039;s semantically sensible, and the h5 accepts a 100% width.&lt;/h5&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 09 Jan 2007 20:35:09 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1213206 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
