table
Posted clamp7724
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了table相关的知识,希望对你有一定的参考价值。
<table border="1"> border(表格线宽)
<tr> 行 <th>Month</th> 列 colspan="2"可以跨列.下面的tr中需要添加额外的td;rowspan="2" 可以跨行,下一个tr需要减少一个td。 th一般用于表示表头 <th>Savings</th> </tr> <tr> <td>January</td> td一般用于表示表数据 <td>$100</td> </tr></table>
<html>
<body>
<h4>横跨两列的单元格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<th colspan="2">电话</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<h4>横跨两行的单元格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="2">电话</th>
<td>555 77 854</td>
</tr>
<tr>
<td>555 77 855</td>
</tr>
</table>
</body>
</html>
以上是关于table的主要内容,如果未能解决你的问题,请参考以下文章
在 UPC300-2.2 Viewsonic G-Tablet 上找不到 NetworkConnectivityListener 类