kirubaharan12345 / blueprintcss

Automatically exported from code.google.com/p/blueprintcss
0 stars 0 forks source link

definition lists (dl dt dd) not showing proper indentation #38

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
A definition list such as:

<dl>
    <dt>definition list dt
    <dd>definition list dd

    <dt>definition list dt
    <dd>definition list dd

    <dt>definition list dt
    <dd>definition list dd
</dl>

<dd> tag should be displayed indentated from the <dt> parent.

Original issue reported on code.google.com by glenn.re...@gmail.com on 8 Sep 2007 at 9:19

GoogleCodeExporter commented 8 years ago
Now dd indents as intended.

macbook-pro:~/src/svk/blueprintcss glenn$ svk diff
=== blueprint/trunk/blueprint/lib/typography.css
==================================================================
--- blueprint/trunk/blueprint/lib/typography.css        (revision 2115)
+++ blueprint/trunk/blueprint/lib/typography.css        (local)
@@ -64,6 +64,7 @@
 ol          { list-style-type: decimal; }
 dl          { margin: 1.5em 0; }
 dl dt       { font-weight:700; }
+dd          { margin-left: 1.5em;}

 a:focus, 
 a:hover     { color: #000; }

Original comment by glenn.re...@gmail.com on 8 Sep 2007 at 10:24