HTML <table> 标签的使用方法
举例说明(www.169it.com)
HTML <table> 表格布局代码:
<table width=”450″ border=”1″ cellspacing=”0″ cellpadding=”2″ bordercolor=”#009900″>
<tr>
<td>第一行第一栏</td>
<td colspan=”2″>第一行的第二、三栏</td>
</tr>
<tr>
<td rowspan=”2″>第二行及第三行 的 第一栏</td>
<td>第二行第二栏</td>
<td>第二行第三栏</td>
</tr>
<tr>
<td>第三行第二栏</td>
<td>第三行第三栏</td>
</tr>
</table>
一个简单的 HTML 表格,包含两列两行:
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
所有主流浏览器都支持 <table> 标签。
标签定义及使用说明
<table> 标签定义 HTML 表格
一个 HTML 表格包括 <table> 元素,一个或多个 <tr>、<th> 以及 <td> 元素。
<tr> 元素定义表格行,<th> 元素定义表头,<td> 元素定义表格单元。
更复杂的 HTML 表格也可能包括 <caption>、<col>、<colgroup>、<thead>、<tfoot> 以及 <tbody> 元素。
如何给HTML <table> 设置标题?
给HTML <table> 设置标题的关键代码: <caption align="top">我是表格标题</caption>.
合并HTML表格中的单元格的代码
<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>
CSS如何设置html table表格边框样式?
设置html table表格边框样式的css代码
<style>
.table-a table{border:1px solid #F00}
/* css注释:只对table标签设置红色边框样式 */
</style>
HTML 4.01 与 HTML5之间的差异
在 HTML5 中,仅支持 "border" 属性,并且只允许使用值 "1" 或 ""。
属性
<table> 标签支持 HTML 的全局属性。
<table> 标签支持 HTML 的事件属性。