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>&nbsp;</td>
            <td>&nbsp;</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.

Change History (1)

comment:1 Changed 17 years ago by Alfonso Martínez de Lizarrondo

Resolution: duplicate
Status: newclosed

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)

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy