Thanks for the input. Given that you don't think a dl is appropriate, nor aAs Patrick points out - an unordered list could be very useful. (and saves on any extra hooks for styling)
div (from what I gathered), what would you suggest?
In the example given by Ted - the DL approach had more merit than a Div based method.There really is no hard and fast rule for these sorts of situations.
The beauty with all this is that you are free to pick the solution you feel comfortable with. Some will prefer the div, some will argue that the DL may be the way to go. Lets put it this way:
* There are no paragraphs * There ARE headings * There IS a relationship between a heading and image * That relationship makes up one item.
I would lean towards a List of sorts. With an unordered list you would need a separate list per item to keep each entity separate. With a DL you could have multiple items making up one Group (or product line) . In fact the more i think about it - the more *I agree that a DL is the best representation*.
<h1>Product Line</h1>
<dl>
<dt>Name of product</dt>
<dd>image or text</dd> <dt>Name of product</dt>
<dd>image or text</dd>
</dl>You are never going to please everyone -* I suggest pick the markup you feel best describes the content as it stands* - and then use the hooks available to style it. Good Luck!
*An example of an Unordered list approach i whipped up for you:* http://www.matchcom.co.nz/ul.html
More related reading : Image floats and Definition Lists http://www.simplebits.com/notebook/2003/09/05/simplequiz_part_iii_heading_and_list.html
****************************************************** The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
