Closed
Bug 346823
Opened 19 years ago
Closed 19 years ago
table row has a style display:block break their postion
Categories
(Core :: Layout: Tables, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: mlav.ph, Unassigned)
Details
Attachments
(1 file)
|
527 bytes,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.5) Gecko/20060719 Firefox/1.5.0.5
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.5) Gecko/20060719 Firefox/1.5.0.5
one of table row has a style "display:block" it will break their position with other table rows
Reproducible: Always
Steps to Reproduce:
Try this html code.
<html>
<body>
Normal
<table border="1">
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
<tr>
<td>test</td>
<td>wrong position</td>
<td>wrong position</td>
</tr>
</table>
With disply:block
<table border="1">
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
<tr style="display:block">
<td>test</td>
<td>wrong position</td>
<td>wrong position</td>
</tr>
</table>
</body>
</html>
Comment 2•19 years ago
|
||
Isn't that expected? It's no longer display: table-row when you do that...
Component: General → Layout: Tables
Product: Firefox → Core
QA Contact: general → layout.tables
Version: unspecified → 1.8 Branch
what jesse said. see http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → INVALID
(In reply to comment #3)
> what jesse said. see http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes
Thanks Bernd and Jesse, it's a developer bug hehehe...
You need to log in
before you can comment on or make changes to this bug.
Description
•