Because of the floats applied to the dt & dd elements, your dls are going to
effectively have a height of 0, and any elements after the dl will sit
underneath the floated elements.
You can throw a <br clear="all"> in between the dl & h2 to get around it
(which I hate), or try this:
dl:after {
content: "";
display: block;
clear: both;
}
I've only tested that minimally, but it works in FB 0.6.1.
HTH
--
Lindsay Evans.
Developer,
Red Square Productions.
[p] 8596.4000
[f] 8596.4001
[w] www.redsquare.com.au
> -----Original Message-----
> From: Mark Stanton [mailto:[EMAIL PROTECTED]
> Sent: Thursday, 23 October 2003 4:22 PM
> To: Sydney Web Standards Group
> Subject: [WSG] Firebird bug?
>
>
> Hey everyone
>
> Tearing my hair out with this one..... Please have a look at:
> http://www.gruden.com/dl_test.html
>
> I'm trying to get dl/dt/dd list thingo from
> http://www.clagnut.com/blog/241/
> going and I seem to have found an issue with it in Firebird.
>
> My basic setup is:
>
> <h2>subheading 1</h2>
> <dl>definition list 1</dl>
>
> <h2>subheading 2</h2>
> <dl>definition list 2</dl>
>
> and I am trying to control the top margin on the h2s. The first
> one is fine,
> but the second one will not react to any of the changes.
>
> Any ideas welcome...
>
> Cheers
>
> Mark
>
>
> ______________
> Mark Stanton
> Technical Director
> Gruden Pty Ltd
> Tel: 9956 6388
> Mob: 0410 458 201
> Fax: 9956 8433
> http://www.gruden.com
>
> *****************************************************
> The discussion list for http://webstandardsgroup.org/
> *****************************************************
>
*****************************************************
The discussion list for http://webstandardsgroup.org/
*****************************************************