|
|
|
You can set your own width, border thickness and background color. You can also determine the width of each column by adding width= to the <td> tag of the column.
---------------------------------------------------
<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan>
<tr><td>one</td></tr>
<tr><td>two</td></tr>
</table>
---------------------------------------------------
<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan>
<tr><td>one</td></tr>
<tr><td>two</td></tr>
<tr><td>three</td></tr>
</table></center>
---------------------------------------------------
<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td>two</td></tr>
</table>
---------------------------------------------------
<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td>two</td></tr>
<tr><td>three</td><td>four</td></tr>
</table>
---------------------------------------------------
<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td rowspan=2>two</td></tr>
<tr><td>three</td></tr>
</table>
---------------------------------------------------
<table border="1">
<tr>
<td>Table cell 1</td><td>Table cell 2</td>
</tr>
</table>
Table cell 1 |
Table cell 2 |
---------------------------------------------------
<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<td width="20%">Table cell 1</td><td>Table cell 2</td>
</tr>
</table>
Table cell 1 |
Table cell 2 |
---------------------------------------------------
<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th>Table header</th>
<th>Table header</th>
</tr>
<tr>
<td width="20%">Table cell 1</td><td>Table cell 2</td>
</tr>
</table>
Table header |
Table header |
Table cell 1 |
Table cell 2 |
--------------------------------------------------------------
<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th colspan="2">Table header</th>
</tr>
<tr>
<td width="20%">Table cell 1</td><td>Table cell 2</td>
</tr>
</table>
Table header |
Table cell 1 |
Table cell 2 |
--------------------------------------------------------------
<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th rowspan="2">Table header</th><td>Table cell 1
</tr>
<tr>
<td>Table cell 2</td>
</tr>
</table>
Table header |
Table cell 1 |
Table cell 2 |
--------------------------------------------------------------
<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th style="color:blue;background-color:yellow;" rowspan="2">Table header</th><td>Table cell 1
</tr>
<tr>
<td>Table cell 2</td>
</tr>
</table>
Table header |
Table cell 1 |
Table cell 2 |
|
|
|
|
|
|
|
Today, there have been 10 visitors (13 hits) on this page! |
|
|
|
|
|
|
|