WebAIM - Web Accessibility In Mind

E-mail List Archives

Ordered Lists and Forms

for

From: Seth Kane
Date: Jun 29, 2009 9:05AM


I just came across some HTML this morning that had FORM FIELDS inside of an Ordered List.

i.e.
<form action="" method="post">
<ol>
<li class="first">
<label for="firstName">First Name</label>
<input id="firstName" type="text" class="text first required" />
</li>

I have never seen this done and I wanted to see if anyone understood the methodology or if it served a true purpose towards Accessibility?