I hadn't realized I had the link break. I had also had an issue where
their were additional spaces between textarea and main. I thought
whitespace didn't matter for xhtml though.
Question anyone see why the textarea is showing up on a different line
than the label. Everywhere else it lines up correctly. It doesn't seem
that I am out of space. It looks ok in Dreamweaver but the problem
occurs in both IE and Firefox. (And yes I will fix the other label
issues people pointed out for accessibility later today)
Michael Horowitz
Your Computer Consultant
http://yourcomputerconsultant.com
561-394-9079
Thierry Koblentz wrote:
On Behalf Of Jason Gray
Michael
Your current code is
<label for="comments">Comments:</label>
<textarea name="comments" rows="6" cols="40">
</textarea>
It should be
<label for="comments">Comments:</label>
<textarea name="comments" rows="6" cols="40"></textarea>
The value of the "for" attribute should match an *id*
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************