Hi all,
I am using a definition list for some elements on the page and need them to display inline, e.g.: they normally look like:
<def term>
<def desc>
<def desc>
and I need them to look like (note the multiple DD's):
<def term> <def desc> <def desc>
<def term> <def desc> <def desc>
<def term> <def desc> <def desc>
I can get them to work fine using floats in moz but no matter what I try they will not work in IE, I typically get something like:
<def term> <def desc> <def desc> <def desc> <def desc> <def desc> <def desc>
<def term>
<def term>
Has anyone found a solution to this problem, I would really like to avoid adding extra markup where possible, but short of changing them to an unordered list im out of ideas :(
Thanks in advance