Is it semantically correct to nest definition lists, or should they simply be a ‘flat list of name/value pairs’.
The specs don’t seem to forbid it.
Further to this question.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well the spec seems to allow it, provided that only the
<dd>contains nested lists. The spec states that a<dt>is an inline element, so it can’t contain a nested list. A<dd>is a block element, so an inner list inside one of these is fine.