Closed
Bug 128523
Opened 23 years ago
Closed 23 years ago
Some CSS2 Notes
Categories
(Core :: CSS Parsing and Computation, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: raphead, Assigned: dbaron)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.8) Gecko/20020204
BuildID: 20022020406
1.)
Look at the border-collapse section:
This isn't supportet but I think it is cool, as it can save a lot of work for
thos web developers.
2.)
Look at the table-layout section:
table-layout: fixed workes fine, but I think it would be better to cut the
content of the cells, like IE does.
Reproducible: Always
Steps to Reproduce:
1.Go to the page
2.Look the sections up
3.Watch the rendering
Actual Results: Described in summary
Expected Results: Described in summary
none
Comment 1•23 years ago
|
||
->style system
Assignee: trudelle → dbaron
Component: XP Apps → Style System
QA Contact: sairuh → ian
Comment 2•23 years ago
|
||
border-collapse is supported in the latest builds (get one from here:
http://ftp.mozilla.org/pub/mozilla/nightly/latest/ and test it for your self).
I think that there might be some issues left, but now it mostly works fine.
And the second report can be achieved by setting overflow hidden on the cells
(anyway this doesn't mean that maybe this isn't a bug in mozilla, I don't know
the CSS rec by heart):
td {
overflow:hidden;
}
| Assignee | ||
Comment 3•23 years ago
|
||
Border-collapse is now supported, and the clipping of cells in fixed table
layout is incorrect.
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•