fieldsetの説明書きを行うlegend要素
fieldset要素と併せて使います。legend要素を使うことで、fiedlsetによりグループ化されたブロックに説明を付けることが可能です。
[htmlsrc]1 | < form > |
2 | < fieldset > |
3 | < legend >個人情報</ legend > |
4 | 姓: < INPUT name = "personal_lastname" type = "text" tabindex = "1" > |
5 | 名: < INPUT name = "personal_firstname" type = "text" tabindex = "2" > |
6 | 住所: < INPUT name = "personal_address" type = "text" tabindex = "3" > |
7 | </ fieldset > |
8 | </ form > |