Opened 14 years ago
Last modified 12 years ago
#6612 closed Bug
[IE] Table right alignment floated — at Initial Version
Reported by: | Garry Yao | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Discussion | Cc: |
Description
The 'align' attribute used on table element in IE actually makes the table right floated.
- Load the following content:
<p> text line before table. </p> <table> <tr> <td>cell</td> <td>cell</td> </tr> <tr> <td>cell</td> <td>cell</td> </tr> </table> <p dir="rtl"> text line after table. </p>
- Make selection in table, open properties dialog and select right alignment;
- Actual Result: table is floated at the right side (overlap the layout box of last line);
- Expected Result: table occupied line height in layout flow.