can I use definition lists just like unordered/ordered lists?
I mean insert DIVs any anything I want inside DT or DD?
<dl>
<dt>
...
</dt>
<dd>
...
</dd>
</dl>
Do any browsers, or search engines complain?
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.
Updated answer based on comments:
This was originally answered in 2011 for HTML 4, but the answer is different for HTML5:
Original answer:
DTelements should contain inline content.DDelements should contain block-level content.This question is also an interesting read: Why use definition lists (DL,DD,DT) tags for HTML forms instead of tables?