I saw Dan Cederholm's presentation at the "@media" conference in San
Francisco yesterday.
I took a look at the markup of a one page web site he created for the
purpose of the presentation and noticed that he marked up a 4 star image
like this:

<abbr class="rating" title="4">
<img alt="****" src="img/icon-4stars.gif"/>
</abbr>

What about marking up "*" used in forms with ABBR elements? 
I mean (using Mike's code from another thread), we'd  replace this:

>       <p>Fields marked with * (asterisk) are required.</p>
>         <label for="name"><span>*</span> Name: <?php echo error(); ?>
>           <input type="text" id="name" name="name" value="" />
>         </label>

With this:

<p>Please fill fields marked with * (required field).</p>
  <label for="name"><abbr title="required field">*</abbr> Name: <?php echo
error(); ?>
    <input type="text" id="name" name="name" value="" />
  </label>
  <label for="email"><abbr>*</abbr> Email: <?php echo error(); ?>
    <input type="text" id="email" name="email" value="" />
  </label>

Would that make sense?

---
Regards,
Thierry | www.TJKDesign.com






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

Reply via email to