Closed
Bug 257164
Opened 21 years ago
Closed 21 years ago
Table with align=right or left is rendered wrongly
Categories
(SeaMonkey :: General, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: rajesh.jayabalan, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7) Gecko/20040803 Firefox/0.9.3
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7) Gecko/20040803 Firefox/0.9.3
Here is the code, try changing align in the second table to left,center and right
<html>
<head>
</head>
<body>
<table border="1" width="75%">
<tr>
<td width="100%">abc</td>
</tr>
</table>
<table align="right" border="1" width="75%">
<tr>
<td width="100%">def</td>
</tr>
</table>
<table border="1" width="75%">
<tr>
<td width="100%">ghi</td>
</tr>
</table>
</body>
</html>
Reproducible: Always
Steps to Reproduce:
1.Check the detail above
2. Run the html code
3. change align in second table to left,center and right and execute
Actual Results:
For align Left
The third table is placed at the left of the second table. This not only
violates the width=75% for all tables. It is not suppossed to affect anythign
outside the table.
For align=right
The third table is place below the first table, and the second table overwrites
the second table.
For align=center
The table is moved to the center of the page
Expected Results:
For align Left
The content of the table will be left aligned
For align=right
The content of the table will be right aligned
For align=center
The content of the table will be center aligned
Comment 1•21 years ago
|
||
This is invalid, read
http://www.w3.org/TR/REC-html40/struct/tables.html#h-11.2.1, the paragraph about
align.
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → INVALID
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•