Unless you are formatting content for an HTML email - tables are still the best supported method for that medium. Though, with that form in there I would hope you aren&#39;t using this for an email.<br><br>-Kenny<br><br><div class="gmail_quote">
On Fri, Dec 18, 2009 at 6:48 PM, Tim Wilson <span dir="ltr">&lt;<a href="mailto:tim_linux@wilson-home.com">tim_linux@wilson-home.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
HTML Tables for non-tabular data?  Nooooo! :)<br><br>Tables do make it much easier to position stuff, but there are a lot of problems with them too.  They&#39;re not &quot;accessibility&quot; friendly, and they can get unreadable quickly.  I&#39;ve seen people put tables within tables, within tables .... far too deep to be readable.  If at all possible, DIV and SPAN and P are much more preferred.  Tables got over-used, and they&#39;re becoming the bane of web pages, even though a lot of places (Yahoo, for example) still use them.  Unfortunately, a lot of examples found on the internet still use tables.<br>

<br>I&#39;d like to make one other suggestion.  Do something like the following:<br>&lt;label&gt;Date:&amp;nbsp;&lt;input type=&quot;text&quot; name=&quot;impDate&quot; size=&quot;10&quot;&gt;&lt;/label&gt;<br><br>One, it ties the text to the input box.  If the user clicks the text, the input box should get focus (on a checkbox, clicking the text will actually toggle the checkbox).  Two, if someone is using a screen reader, it will announce the text as a label to the input box.  At least, that&#39;s my understanding.  I&#39;ve not actually seen a screen reader for the visually impaired.  But accessibility does seem to be a growing need.<br>

<br><br><div class="gmail_quote">On Fri, Dec 18, 2009 at 4:36 PM, Afan Pasalic <span dir="ltr">&lt;<a href="mailto:afan@afan.net" target="_blank">afan@afan.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

is this:<br>
<div><br>
<br>
&lt;table width=&quot;100%&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;<br>
     &lt;tr&gt;<br>
</div>          &lt;td align=&quot;center&quot; colspan=&quot;3&quot;&gt;<br>
<div>               &lt;select name=&quot;system&quot;&gt;<br>
                    &lt;option value=&quot;Option1&quot;&gt;Option 1&lt;/option&gt;<br>
                    &lt;option value=&quot;Option2&quot;&gt;Option 2&lt;/option&gt;<br>
                &lt;/select&gt;<br>
               &lt;input type=&#39;button&#39; value=&#39;Remind&#39; name=&#39;bRemind&#39;<br>
onclick=&#39;vbscript:MultiFunctions &quot;Remind&quot;&#39;&gt;<br>
               &lt;input type=&#39;button&#39; value=&#39;Make Statement&#39;<br>
name=&#39;bMakeStatement&#39; onclick=&#39;vbscript:MultiFunctions<br>
&quot;MakeStatement&quot;&#39;&gt;<br>
</div>          &lt;/td&gt;<br>
     &lt;/tr&gt;<br>
     &lt;tr&gt;<br>
<div>          &lt;td&gt;Date:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impDate&quot; size=&quot;10&quot;&gt;&lt;/td&gt;<br>
          &lt;td&gt;Start Time:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impStart&quot;<br>
size=&quot;10&quot;&gt;&lt;/td&gt;<br>
          &lt;td&gt;End Time:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impStop&quot;<br>
size=&quot;10&quot;&gt;&lt;/td&gt;<br>
</div>     &lt;/tr&gt;<br>
&lt;/table&gt;<br>
<br>
<br>
<br>
<br>
or this:<br>
<div><br>
<br>
<br>
&lt;table width=&quot;100%&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;<br>
     &lt;tr&gt;<br>
</div>          &lt;td align=&quot;center&quot; colspan=&quot;2&quot;&gt;<br>
<div>               &lt;select name=&quot;system&quot;&gt;<br>
                    &lt;option value=&quot;Option1&quot;&gt;Option 1&lt;/option&gt;<br>
                    &lt;option value=&quot;Option2&quot;&gt;Option 2&lt;/option&gt;<br>
                &lt;/select&gt;<br>
               &lt;input type=&#39;button&#39; value=&#39;Remind&#39; name=&#39;bRemind&#39;<br>
onclick=&#39;vbscript:MultiFunctions &quot;Remind&quot;&#39;&gt;<br>
               &lt;input type=&#39;button&#39; value=&#39;Make Statement&#39;<br>
name=&#39;bMakeStatement&#39; onclick=&#39;vbscript:MultiFunctions<br>
&quot;MakeStatement&quot;&#39;&gt;<br>
</div>          &lt;/td&gt;<br>
     &lt;/tr&gt;<br>
     &lt;tr&gt;<br>
          &lt;td align=&quot;left&quot; colspan=&quot;3&quot;&gt;Date:&amp;nbsp&lt;input type=&quot;text&quot;<br>
<div>name=&quot;impDate&quot; size=&quot;10&quot;&gt;&lt;/td&gt;<br>
</div>            &lt;/tr&gt;<br>
            &lt;tr&gt;<br>
<div>          &lt;td&gt;Start Time:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impStart&quot;<br>
size=&quot;10&quot;&gt;&lt;/td&gt;<br>
          &lt;td&gt;End Time:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impStop&quot;<br>
size=&quot;10&quot;&gt;&lt;/td&gt;<br>
</div>     &lt;/tr&gt;<br>
&lt;/table&gt;<br>
<br>
<br>
what are you looking for?<br>
<font color="#888888"><br>
<br>
afan<br>
</font><div><div></div><div><br>
<br>
<br>
<br>
<br>
<br>
Todd Walton wrote:<br>
&gt; &lt;table width=&quot;100%&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;<br>
&gt;      &lt;tr&gt;<br>
&gt;           &lt;td&gt;&lt;p align=&quot;center&quot;&gt;<br>
&gt;                &lt;select name=&quot;system&quot;&gt;<br>
&gt;                     &lt;option value=&quot;Option1&quot;&gt;Option 1&lt;/option&gt;<br>
&gt;                     &lt;option value=&quot;Option2&quot;&gt;Option 2&lt;/option&gt;<br>
&gt;                 &lt;/select&gt;<br>
&gt;                &lt;input type=&#39;button&#39; value=&#39;Remind&#39; name=&#39;bRemind&#39;<br>
&gt; onclick=&#39;vbscript:MultiFunctions &quot;Remind&quot;&#39;&gt;<br>
&gt;                &lt;input type=&#39;button&#39; value=&#39;Make Statement&#39;<br>
&gt; name=&#39;bMakeStatement&#39; onclick=&#39;vbscript:MultiFunctions<br>
&gt; &quot;MakeStatement&quot;&#39;&gt;<br>
&gt;           &lt;/p&gt;&lt;/td&gt;<br>
&gt;      &lt;/tr&gt;<br>
&gt;      &lt;tr&gt;<br>
&gt;           &lt;p align=&#39;center&#39;&gt;<br>
&gt;           &lt;td&gt;Date:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impDate&quot; size=&quot;10&quot;&gt;&lt;/td&gt;<br>
&gt;           &lt;td&gt;Start Time:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impStart&quot; size=&quot;10&quot;&gt;&lt;/td&gt;<br>
&gt;           &lt;td&gt;End Time:&amp;nbsp&lt;input type=&quot;text&quot; name=&quot;impStop&quot; size=&quot;10&quot;&gt;&lt;/td&gt;<br>
&gt;           &lt;/p&gt;<br>
&gt;      &lt;/tr&gt;<br>
&gt; &lt;/table&gt;<br>
&gt;<br>
&gt; This HTML creates a table that doesn&#39;t look like I want it to.  The<br>
&gt; drop-down selector and the Remind and MakeStatement buttons are only<br>
&gt; 50% of screen width, as is the cell with the impDate input box.  The<br>
&gt; right half of the screen has the impStart and impStop input boxes.<br>
&gt;<br>
&gt; |     Option1 [Remind] [MakeStatement]     |<br>
&gt;                                                |<br>
&gt; |     Date: [         ]                                     |<br>
&gt; Start Time: [          ]    Stop Time: [            ]     |<br>
&gt;<br>
&gt; Can someone tell me why this is?  What can I change to make the drop<br>
&gt; down and the two buttons center across the entire page, instead of<br>
&gt; just half of it?<br>
&gt;<br>
&gt; --<br>
&gt; Todd<br>
&gt; _______________________________________________<br>
&gt; Cialug mailing list<br>
&gt; <a href="mailto:Cialug@cialug.org" target="_blank">Cialug@cialug.org</a><br>
&gt; <a href="http://cialug.org/mailman/listinfo/cialug" target="_blank">http://cialug.org/mailman/listinfo/cialug</a><br>
&gt;<br>
_______________________________________________<br>
Cialug mailing list<br>
<a href="mailto:Cialug@cialug.org" target="_blank">Cialug@cialug.org</a><br>
<a href="http://cialug.org/mailman/listinfo/cialug" target="_blank">http://cialug.org/mailman/listinfo/cialug</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Tim<br>Required reading: <a href="http://bccplease.com/" target="_blank">http://bccplease.com/</a><br>
<br>_______________________________________________<br>
Cialug mailing list<br>
<a href="mailto:Cialug@cialug.org">Cialug@cialug.org</a><br>
<a href="http://cialug.org/mailman/listinfo/cialug" target="_blank">http://cialug.org/mailman/listinfo/cialug</a><br>
<br></blockquote></div><br>