Welcome to Doors2Stores "Bringing understanding and awareness of eBay Stores"

eBay Store owners dedicated to sharing knowledge
and resources for a better shopping community
Understanding Tables - Basic
Once you understand the reasoning behind table tags, it will become quite easy for you.  I will use various examples below, giving you the html code in blue and the results below each example.  The basic Table tags are:
<table> </table> creates a table
<tr> </tr> sets off each row in a table
<td> </td> sets off each cell in a row
Within each cell, you can put either text or images.  Table tags are only setting up the table itself, you still have to put the information you want within the table cell.  So far, so good?

Table with One Row, One Cell (column)

<table>
    <tr>
        <td>
Row 1, Cell 1</td>
    </tr>
</table>


RESULTS
Row 1, Cell 1

Table with Two Rows, One Cell (column)

<table>
    <tr>
        <td>
Row 1, Cell 1</td>
    </tr>
    <tr>
        <td>
Row 2, Cell 1</td>
    </tr>
</table>


RESULTS
Row 1, Cell 1
Row 2, Cell 1

Table with One Row, Two Cells (columns)

<table>
    <tr>
        <td>
Row 1, Cell 1</td>
        <td>
Row 1, Cell 2</td>
    </tr>
</table>

Row 1, Cell 1 Row 1, Cell 2

Table with Two Rows, Two Cells (columns)

<table>
    <tr>
        <td>
Row 1, Cell 1</td>
        <td>
Row 1, Cell 2</td>
    </tr>
    <tr>
        <td>
Row 2, Cell 1</td>
        <td>
Row 2, Cell 2</td>
    </tr>
</table>

Row 1, Cell 1 Row 1, Cell 2
Row 2, Cell 1 Row 2, Cell 2

 
Return