Crossbrowser DL





1
Date Submitted Tue. Mar. 31st, 2009 7:04 AM
Revision 1 of 1
Helper brendo
Tags "hi" | CSS
Comments 0 comments
Styles a Definition List to display as:

k:v
k:v

IE6 Bug has multiple DD's with a negative margin of about 2px

<dl>
    <dt>Address</dt>
    <dd>130 Long Way Street</dd>
    <dt>Phone</dt>
    <dd>0000 0000</dd>
    <dt>Email</dt>
    <dd>blah</dd>
    <dd>blah</dd>
    <dt>Fax</dt>
    <dd>0000 0000</dd>
</dl>
 

    dt {
        font-weight: bold;
        color: #0000FF;
        float: left;
        clear: left;
    }
   
    dd {       
        margin-left: 5em
    }
   
    dt, dd {
        line-height: 1.5;
    }
 

Brendan A

www.bloodbone.ws

Comments

There are currently no comments for this snippet.

Voting

Votes Up


Scripter elsevero

Votes Down