![]() |
"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 tableWithin 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
|
| 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
|
| Table with One Row, Two Cells (columns) <table> <tr> <td>Row 1, Cell 1</td> <td>Row 1, Cell 2</td> </tr> </table>
|
| 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>
|
| Return |