Quote:
Originally Posted by Lynne
(I don't like the way they did the Thanks line)
|
same here...
BUT i doubt the page will validate...
I am not sure if you are allowed to add a div inside a <dl> </dl> tag...
now you have:
<dl>
<dt>...</dt><dd>...</dd>
<dt>...</dt><dd>...</dd><dd>...</dd>
<div style="clear:both"></div>
</dl>
I would put it in <dt> tag adding the clear:both like lynne pointed out...
<dl>
<dt>...</dt><dd>...</dd>
<dt>...</dt><dd>...</dd><dd>...</dd>
<dt style="clear:both"></dt>
</dl>
havent tested but could also be:
<dl>
<dt>...</dt><dd>...</dd>
<dt>...</dt><dd>...</dd><dd>...</dd>
<dt style="clear:both"><div>.......</div></dt>
</dl>
other possibility would be to close the <dl> tag before you place the div-- and reopen it after your code...
</dl><div style="clear:both">.....</div><dl>
F.