Hi Two good resources may help you here:
HTML help: http://htmlhelp.com/reference/html40/lists/dd.html "Contents Inline elements, block-level elements" The DTD for XHTML (strict e.g): http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd and http://www.w3.org/TR/xhtml1/dtds.html#a_dtd_XHTML-1.0-Strict <!-- definition lists - dt for term, dd for its definition --> <!ELEMENT dd %Flow;> <!ATTLIST dd %attrs; > Meaning you can add pretty much any element inside a dd. Whether it's the best way to do it, is another matter which I think the other replies answer. HTH James On Mon, 17 Aug 2009 03:18:35 pm Tim MacKay wrote: > Hi all, > > > > Is it semantic markup to include a table of items ( in this case a > nutritional information table ) as the contents of a <dd> within a > definition list? ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [email protected] *******************************************************************
