Paul Novitski wrote:
        <fieldset>
                <legend>Required:</legend>

                <label for="name">Name:<br />
<input type="text" id="name" name="name" value="" />
                </label>
                ...

That would vocalize "required name," "required email address," "required password," etc.
Interesting; but what if you need (as is commonly the case) non-required fields interspersed with required ones?

Instead of using a legend, how's about:

label.required span {
   position : absolute;
   left : -9999px;
}
<label class="required"><span>Required</span>...


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to