Closed
Bug 38155
Opened 25 years ago
Closed 25 years ago
Table cell heights are ignored
Categories
(Core :: Layout, defect, P3)
Tracking
()
People
(Reporter: neil, Assigned: troy)
Details
When you run this code in mozilla it totally ignores the height of the cell
which is specified. Mozilla actaully outputs the exact same as Nav4, which I
feel is wrong.
I have the table resize to 100% x 100%. Then I have one cell with no
width/height information specified, so it should fill up whatever space is left.
Then under that cell I have another cell with a specified height. It ignores
that height value and displays whatever it feels like displaying.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body>
<table border="1" height="100%" width="100%">
<tr>
<td>
This TD should be any old size. No width or height are specified.
</td>
</tr>
<tr>
<td height="50">
This TD should have a height of 50 pixels.
</td>
</tr>
</table>
</body>
</html>
Comment 1•25 years ago
|
||
dup of/related to tons of things....bug 35950, bug 19961, bug 4918, bug 3103,
and so forth.
I choose 19961 ;)
*** This bug has been marked as a duplicate of 19961 ***
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•