Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using CSS, how can I style the following:

<dl>
    <dt>Mercury</dt>
    <dd>Mercury (0.4 AU from the Sun) is the closest planet to the Sun and the smallest planet.</dd>
    <dt>Venus</dt>
    <dd>Venus (0.7 AU) is close in size to Earth, (0.815 Earth masses) and like Earth, has a thick silicate mantle around an iron core.</dd>
    <dt>Earth</dt>
    <dd>Earth (1 AU) is the largest and densest of the inner planets, the only one known to have current geological activity.</dd?>
</dl>

so the content of the dt show in one column and the content of the dd in another column, with each dt and the corresponding dd on the same line? I.e. producing something that looks like:

table format

share|improve this question
Just as a useful note: if you wanna control the spacing between lines of dts and dds, check this: stackoverflow.com/q/896815/114029 These powerful tags make styling forms really easy and beautiful. – Leniel Macaferi Nov 12 '11 at 21:12

8 Answers

up vote 41 down vote accepted
<style type="text/css">
* {
 padding:0;
  margin:0
}
dl {
 width:100%;
 overflow:hidden;
 background:#ff0;
}
dt {
 float:left;
 width:50%; /* adjust the width; make sure the total of both is 100% */
 background:#cc0;
}
dd {
 float:left;
 width:50%; /* adjust the width; make sure the total of both is 100% */
 background:#dd0
}
</style>
<dl>
    <dt>Mercury</dt>
    <dd>Mercury (0.4 AU from the Sun) is the closest planet to the Sun and the smallest planet.</dd>
    <dt>Venus</dt>
    <dd>Venus (0.7 AU) is close in size to Earth, (0.815 Earth masses) and like Earth, has a thick silicate mantle around an iron core.</dd>
    <dt>Earth</dt>
    <dd>Earth (1 AU) is the largest and densest of the inner planets, the only one known to have current geological activity.</dd?>
</dl>

Test it here: http://htmledit.squarefree.com/

share|improve this answer
1  
Thanks! This CSS tip helped me to format my Zend Form without having to code form decorator classes. – devNoise Jun 15 '11 at 4:22
This ain't working in IE, would you mind fixing that? – Fluffy Nov 30 '11 at 13:27

Nimbuz answer is good. I would add "clear: left;" to dt. If there are any dt's without a following dd the "table" will still display correctly.

share|improve this answer
1  
I have that problem, but clear:left is not solving it. Any other suggestions? – Craig May 12 '11 at 4:58
SInce I have DDs but they are empty I solved it by setting the min-height value on DD. This will work so long as a DT never takes up two lines – Craig May 13 '11 at 2:32

If you use bootstrap...

<dl class="dl-horizontal">
        <dt>Label:</dt>
        <dd>
          Description of planet
        </dd>
        <dt>Label2:</dt>
        <dd>
          Description of planet
        </dd>
</dl>
share|improve this answer

I've found a solution that seems perfect to me, but it needs extra <div> tags. It turns out that it is not necessary to use <table> tag to align as in a table, it suffices to use display:table-row; and display:table-cell; styles:

<style type="text/css">
dl > div {
  display: table-row;
}
dl > div > dt {
  display: table-cell;
  background: #ff0;
}
dl > div > dd {
  display: table-cell;
  padding-left: 1em;
  background: #0ff;
}
</style>

<dl>
  <div>
    <dt>Mercury</dt>
    <dd>Mercury (0.4 AU from the Sun) is the closest planet to the Sun and the smallest planet.</dd>
  </div>
  <div>
    <dt>Venus</dt>
    <dd>Venus (0.7 AU) is close in size to Earth, (0.815 Earth masses) and like Earth, has a thick silicate mantle around an iron core.</dd>
  </div>
  <div>
    <dt>Earth</dt>
    <dd>Earth (1 AU) is the largest and densest of the inner planets, the only one known to have current geological activity.</dd>
  </div>
</dl>
share|improve this answer
3  
this works well, however this is not XHTML compliant. – Burnzy Feb 22 '12 at 14:21
Why's it not XHTML compliant? – Derick Schoonbee Feb 27 '12 at 15:24
3  
@DerickSchoonbee - Because dls are only allowed to have dts and dds as children. dts can only have inline elements as children. dds, for some reason, can have block-level elements as children. – Anthony Mar 6 '12 at 8:43

Assuming you know the width of the margin:

dt { float: left; width: 100px; }
dd { margin-left: 100px; }
share|improve this answer
I wouldn't call it clean, because you've hardcoded the margins in. – dawmail333 Jun 15 '12 at 12:39
Clean: having a simple, well-defined, and pleasing shape. The answer is short. It solves the problem in three statements. Not having known the margin was not a requirement as part of the question. – ancestral Jun 15 '12 at 14:26
Clean is generally used for markup in these styles of questions. Anyway, welcome to StackOverflow, and I recommend that you put those kinds of assumptions in the body of your question, just for clarity. – dawmail333 Jun 15 '12 at 23:18

Depending on how you style the dt and dd elements, you might encounter a problem: making them have the same height. For instance, if you want to but some visible border at the bottom of those elements, you most probably want to display the border at the same height, like in a table.

One solution for this is cheating and make each row a "dl" element. (this is equivalent to using tr in a table) We loose the original interest of definition lists, but on the counterpart this is an easy manner to get pseudo-tables that are quickly and pretty styled.

THE CSS:

dl {
 margin:0;
 padding:0;
 clear:both;
 overflow:hidden;
}
dt {
 margin:0;
 padding:0;
 float:left;
 width:28%;
 list-style-type:bullet;
}
dd {
 margin:0;
 padding:0;
 float:right;
 width:72%;
}

.huitCinqPts dl dt, .huitCinqPts dl dd {font-size:11.3px;}
.bord_inf_gc dl {padding-top:0.23em;padding-bottom:0.5em;border-bottom:1px solid #aaa;}

THE HTML:

<div class="huitCinqPts bord_inf_gc">
  <dl><dt>Term1</dt><dd>Definition1</dd></dl>
  <dl><dt>Term2</dt><dd>Definition2</dd></dl>
</div>
share|improve this answer

jsFiddle Screenshot

See jsFiddle demo

I needed a list exactly as described for a project that showed employees at a company, with their photo on the left, and information on the right. I managed to accomplish the clearing by using psuedo-elements after every DD:

.myList dd:after {
  content: '';
  display: table;
  clear: both;
}

In addition, I wanted the text to only display to the right of the image, without wrapping under the floated image (pseudo-column effect). This can be accomplished by adding a DIV element with the CSS overflow: hidden; around the content of the DD tag. You can omit this extra DIV, but the content of the DD tag will wrap under the floated DT.

After playing with it a while, I was able to support multiple DT elements per DD, but not multiple DD elements per DT. I tried adding another optional class to clear only after the last DD, but subsequent DD elements wrapped under the DT elements (not my desired effect… I wanted the DT and DD elements to form columns, and the extra DD elements were too wide).

By all rights, this should only work in IE8+, but due to a quirk in IE7 it works there as well.

share|improve this answer

Most of what people here suggested works, however you should only place generic code in to the style sheet, and place the specific code in to the html code as shown below. Otherwise you will end up with a bloated style sheet.

Here is how I do it:

Your style sheet code:

<style>
    dt {
        float:left;
    }
    dd {
        border-left:2px dotted #aaa;
        padding-left: 1em;
        margin: .5em;
    }   
</style>

Your html code:

<dl>
    <dt>1st Entity</dt>
    <dd style="margin-left: 5em;">Consumer</dd>
    <dt>2nd Entity</dt>
    <dd style="margin-left: 5em;">Merchant</dd>
    <dt>3rd Entity</dt>
    <dd style="margin-left: 5em;">Provider, or cToken direct to Merchant</dd>
    <dt>4th Entity</dt>
    <dd style="margin-left: 5em;">cToken to Provider</dd>
</dl>

Looks like this

share|improve this answer
I would advise against repeating margin-left when it can be moved to the style sheet - they are there to prevent code duplication. Style sheet bloat can be counteracted with consistent design; but even then - if preventing bloat is to save network traffic, it is still saved by sticking it in the style sheet instead of the HTML. – michaelc May 30 at 8:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.