How to create Thin border table in html:
Use following html code to create Thin border table in html.
<table cellspacing="0" cellpadding="1" style="border-color:Black;border-width:1px;border-style:Solid;height:108px;width:100%;border-collapse:collapse;" rules="all" >
<tbody>
<tr >
<th scope="col">Date</th>
<th scope="col">Time</th>
<th scope="col">Status at</th>
<th scope="col">Status</th>
</tr>
<tr>
<td align="center">25/08/2014</td>
<td align="center">10:20:15</td>
<td align="left">Status A</td>
<td align="left">Status B</td>
</tr>
</tbody>
</table>
Use following html code to create Thin border table in html.
<table cellspacing="0" cellpadding="1" style="border-color:Black;border-width:1px;border-style:Solid;height:108px;width:100%;border-collapse:collapse;" rules="all" >
<tbody>
<tr >
<th scope="col">Date</th>
<th scope="col">Time</th>
<th scope="col">Status at</th>
<th scope="col">Status</th>
</tr>
<tr>
<td align="center">25/08/2014</td>
<td align="center">10:20:15</td>
<td align="left">Status A</td>
<td align="left">Status B</td>
</tr>
</tbody>
</table>
0 comments:
Post a Comment