- From: <bugzilla@jessica.w3.org>
- Date: Sat, 20 Nov 2010 18:59:30 +0000
- To: public-html-bugzilla@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=11206 --- Comment #8 from Fred P <fprog@hotmail.com> 2010-11-20 18:59:30 UTC --- Here's another valid example for tag <u> used to indicate the form access key: <!doctype html> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Form AccessKey example</title> <style type="text/css"> body{font-family:Arial,Verdana,sans-serif;font-size:10pt;} label,#submit{font-weight:bold;} div,label,input{display:block;float:left;width:120px;} div,fieldset,#submit{clear:both;padding:10px;width:250px;} input{border-width:1px 2px 2px 1px;} #submit{width:245px;border-width:1px;} </style> </head><body> <form id="f" name="f"><fieldset> <div><label for="firstname" accesskey="f"><u>F</u>irst name: </label> <input type="text" id="firstname" name="firstname" value="" tabindex="1" /></div> <div><label for="lastname" accesskey="l"><u>L</u>ast name: </label> <input type="text" id="lastname" name="lastname" tabindex="2" /></div> <div><label for="email" accesskey="e"><u>E</u>mail: </label> <input type="text" id="email" name="email" tabindex="3" /></div> <div><input type="submit" id="submit" name="submit" value="Submit" /></div> </fieldset> </form> </body> </html> -- Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.
Received on Saturday, 20 November 2010 18:59:32 UTC