You shouldn't need a strong emphasis - the dt (definition title) implys that it has a relevance to the dd () below it and is indeed the title for it. If you just want it bold you can style it that way in the CSS - which I am sure you know already.
----- Original Message ---- From: pepelsbey <[EMAIL PROTECTED]> To: [email protected] Sent: Monday, 10 July, 2006 9:40:53 AM Subject: Re: [WSG] List headings > Specifically: > <!ELEMENT DT - O (%inline;)* -- definition term --> Pity : \ So... best two solutions, i think: <h1>Title</h1> <ul> <li>Item</li> <li>Item</li> </ul> and <dl> <dt>Title</dt> <dd>Item</dd> <dd>Item</dd> </dl> or with STRONG <dl> <dt><strong>Title</strong></dt> <dd>Item</dd> <dd>Item</dd> </dl> -- С уважением, pepelsbey. http://pepelsbey.net ****************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ****************************************************** ****************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
