p vs. ol or ul for form styling

前端 未结 7 1811
醉梦人生
醉梦人生 2021-02-01 07:16

Typically I style forms with the unordered list tag e.g.

相关标签:
7条回答
  • 2021-02-01 07:48

    Don't forget Definition List:

    <fieldset>
        <dl>
            <dt><label for="txtName">Name</label></dt>
            <dd><input type="text" id="txtName" /></dd>
        </dl>
    </fieldset>
    

    There's no real right answer. Pick the markup that makes the most sense to you. To me, forms aren't an unordered list. Definition list is closer in my mind.

    0 讨论(0)
提交回复
热议问题