Closed
Bug 1363
Opened 26 years ago
Closed 26 years ago
how should we do lists in the ua.css
Categories
(Core :: CSS Parsing and Computation, defect, P2)
Tracking
()
M7
People
(Reporter: kipp, Assigned: peterl-retired)
Details
Currently there are several issues:
1. How should the list indenting be done? What I'm doing now is mimicking the IE
approach. However, we don't have to do that anymore because we now have a
rendering bit that lets us handle "outside children". Should we switch to a
plain margin or what?
2. We need an answer to the bare-LI (not in a list) issue. Navigator ends up
with in "inside" bullet in this case. Our style rules in the ua.css leave us in
the position of people believing that we don't support inside bullets (which is
not true).
Assignee | ||
Comment 2•26 years ago
|
||
re: #2, we now have child selectors, so we can fix this via BODY > LI {
list-style-position: inside; } instead...
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M4 → M7
Comment 3•26 years ago
|
||
#2 is covered by bug 1049.
re #1: well, whether you use padding or margin depends on where you want the
border to appear. I would suggest padding makes more sense.
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Comment 4•26 years ago
|
||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 5•26 years ago
|
||
Verified duplicate of #2038 - list indenting
You need to log in
before you can comment on or make changes to this bug.
Description
•