Td and TR problem ?

Discussion in 'XHTML/HTML/CSS' started by Indianseo, Jul 20, 2010.

Remove these ads by signing in
Remove these ads by signing in
  1. Indianseo Banned

    Member Since:
    Jul 15, 2010
    Message Count:
    30
    Likes Received:
    0
    Hi,



    i cant understand <td> and <TR> funda In HTML who will help me for solve my this problem !



    Need you help ?
  2. SeoKungFu Active Member

    Member Since:
    Jul 10, 2009
    Message Count:
    603
    Likes Received:
    77
    Occupation:
    SEO Ninja
    I saw you were asking about tables in HTML in the other thread, and this one is related.
    Apart from sending you to read the manuals, which you generally should do, the usage of the table, tr and td tags is simple:
    and <table> </table> make opening and closing tags for the whole tables.
    Inside of it you should use and closing and opening tags for table rows.
    And inside of each table rows ( tr's ) you should use table division ( not sure if this is the exact meaning ) - for opening and for closing tag.

    Example:

    <table>
    <tr>
    <td>first row first column</td>
    <td>second column first row</td>
    </tr>
    <tr>
    <td>first column second row</td>
    <td>second column second row</td>
    </tr>
    </table>

    What is most important is to keep track of tag nesting - opening and closing ones.
    1 people like this.

Share This Page