Closed
Bug 111191
Opened 24 years ago
Closed 23 years ago
The inner tbody code elements are causing problems with the outer Table/Tbody code layout
Categories
(Core :: Layout: Tables, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 133756
People
(Reporter: mozbugz, Assigned: karnaze)
References
()
Details
Attachments
(6 files)
Inner Table Body Code is the only part that is different in the pages like
product.html from the other pages such as home.html, If I remove the Tbody code
from 2 different rendered pages, the first comment line to the last the outside
left column code is exactly the same and renders fine. The inner tbody code
elements are causing problems with the outer Tbody code layout. using build from
11-20.
which is a similar problem I'm seeing in bug 104012, which maybe related to some
combination of like inner <tbody> code with outer <div> alignment=center, with
<Img src> where alignment=right.
from n.p.m.browser:
>> I just downloaded and installed 0.9.6 today (build: 2001112009) for
>> win32, I'm running on Windows 2k Pro. When I looked at pages on the
>> company's website with this version (for example:
>> www.serviceworks.co.uk/product.html) the tables on one of my templates
>> seem to have gone out of whack. Instead of the cell containing the
>> logo fitting exactly the size of the image and the menue then
>> appearing just underneath in another cell, then the © appearing
>> in a cell at the bottom of the column, the cell containing the logo
>> stretches and pushes the menu down (which looks untidy...).
>>
>> It looks OK on IE, NN4.6, Opera 5.12 and previous versions of Mozilla
>> (because I checked that sort of thing before I published the pages),
>> does anybody know why there is suddenly a different behaviour under
>> 0.9.6? I thought it might be related to bug 33988, but it doesn't
>> seem to be exactly the same.
>>
>> Rob
---
is this buggy with nested tables or invalid?
going to add several attachments.
| Reporter | ||
Comment 1•24 years ago
|
||
| Reporter | ||
Comment 2•24 years ago
|
||
| Reporter | ||
Comment 3•24 years ago
|
||
| Reporter | ||
Comment 4•24 years ago
|
||
| Reporter | ||
Comment 5•24 years ago
|
||
| Reporter | ||
Comment 6•24 years ago
|
||
| Reporter | ||
Comment 7•24 years ago
|
||
looks like same issues with div tags, tbody tags.. and img source affecting page
layout.. both pages use 4.01 transitional doctypes.
Comment 8•24 years ago
|
||
The problem is the 'rowspan="2"' on the cell with the logo.
We have something like:
<table>
<tr>
<td rowspan=2 /> <td />
</tr>
<tr>
<td rowspan=3 />
</tr>
<tr>
<td />
</tr>
<tr>
<td />
</tr>
</table>
The issue is that the row that includes the top of the "rowspan=3" cell is too
tall.
I'm fairly certain this is a duplicate of an existing table layout bug...
Whiteboard: DUPEME
| Reporter | ||
Comment 9•24 years ago
|
||
ok, Thanks Boris,
I have seen also rowspan code changes to mozilla like around 0.9.5 landing or
shortly before or after that milestone. Another bug for rowspan was also
checked in probably just under a two weeks ago.
| Reporter | ||
Comment 10•24 years ago
|
||
Comment 11•23 years ago
|
||
Duped
*** This bug has been marked as a duplicate of 133756 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Whiteboard: DUPEME
You need to log in
before you can comment on or make changes to this bug.
Description
•