Closed
Bug 133022
Opened 24 years ago
Closed 24 years ago
<dl compact> should be layed out in a compact way
Categories
(Core :: Layout, defect)
Core
Layout
Tracking
()
People
(Reporter: markus, Assigned: attinasi)
Details
From Bugzilla Helper:
User-Agent: Mozilla/4.61 [en] (Win95; I)
BuildID: 20020315
The tag "DL" does have an attribute "COMPACT", which is ignored by the layout
engine. A compact definition-list should have DT and DD fields on the same
line, while standard rendering puts DT and DD on separate lines.
Reproducible: Always
Steps to Reproduce:
1. write a HTML-page with:
<dl compact><dt>a<dd>first<dt>b<dt>second</dl>
2. save it
3. open the file with the browser
Actual Results: Mozilla renders the HTML by showing 4 lines like:
a
first
b
second
Expected Results: I expected rendering on 2 lines:
a first
b second
This layout bug is present in all Mozilla-versions.
If this tag were rendered correctly, I would use the DL-tag more often instead
of using nested tables to control layout of lists...
![]() |
||
Comment 1•24 years ago
|
||
This attribute does not exist in HTML 4. Unfortunately, the CSS property display: compact, which could be used for this, is not supported (separate bug). INVALID
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → INVALID
![]() |
||
Comment 2•24 years ago
|
||
Actually, compact does exist in HTMl 4.01:
http://www.w3.org/TR/html401/struct/lists.html#adef-compact
However it is deprecated and should not be used. Reopening to dupe to bug 2055,
which covers this issue.
Status: RESOLVED → UNCONFIRMED
Resolution: INVALID → ---
![]() |
||
Comment 3•24 years ago
|
||
*** This bug has been marked as a duplicate of 2055 ***
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago → 24 years ago
Resolution: --- → DUPLICATE
Reporter | ||
Comment 4•24 years ago
|
||
<DL COMPACT> is deprecated, but not obsolete in HTML 4.01.
Deprecated attributes should still be rendered in browsers for backward
compatibility.
Is there a way to specify compact rendering of DL in style-sheets?
I fear not! One more reason to still support <DL COMPACT>.
Status: RESOLVED → UNCONFIRMED
Resolution: DUPLICATE → ---
![]() |
||
Comment 6•24 years ago
|
||
Re-marking duplicate, since the other bug is precisely about this.
*** This bug has been marked as a duplicate of 2055 ***
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago → 24 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•