Opened 17 years ago
Closed 17 years ago
#1108 closed Task (duplicate)
Enhance Table Code
Reported by: | Aung Khant | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
Dear Fred and developers,
Currently FCKeditor table html code is
<table width="200" cellspacing="1" cellpadding="1" border="1" summary="This is summary"> <caption>This is caption</caption> <tbody> <tr> <td> </td> <td> </td> </tr> </tbody> </table>
Some web designers say the preferable code is
<table width="200" cellspacing="1" cellpadding="1" border="1" summary="This is summary"> <caption></caption> <thead> <tr><th>THEAD</th></tr> </thead> <tbody> <tr> <td>TBODY</td> </tr> </tbody> <tfoot> <tr><td>TFOOT</td></tr> </tfoot> </table>
They say it's suitable for organizing table code, especially numeric data table. Sorry, I have no great idea for posting this stuff. Maybe you come up some ideas.
Thank you so much for your time.
This is covered in http://sourceforge.net/tracker/index.php?func=detail&aid=1409409&group_id=75348&atid=543655 (except the tfoot part, but that would be trivial to add)