HTML <td> 标签的 abbr 属性HTML <td> 标签实例在 HTML 表格中使用 abbr 属性:<table border="1"> <tr> <th>Company</th> <th>Country</th> </tr> <tr> <td abb
HTML <tbody> 标签的 valign 属性HTML <tbody> 标签实例下面的 HTML 表格把 tbody 元素中的内容垂直居中对齐:<table border="1" width="100%"> <tr> <th>Month</th>
HTML <tbody> 标签的 charoff 属性HTML <tbody> 标签实例下面的 HTML 表格把 tbody 元素中的内容与字符 "." 向右两个字符的位置对齐:<table border="1" width="100%"> <t
HTML <tbody> 标签的 char 属性HTML <tbody> 标签实例下面的 HTML 表格把 tbody 元素中的内容与字符 "." 对齐:<table border="1" width="100%"> <tr> <th>Month</th
HTML <tbody> 标签的 align 属性HTML <tbody> 标签实例下面的 HTML 表格将 tbody 元素中的内容向右对齐:<table border="1" width="100%"> <thead> <tr> <th>Month<
HTML <table> 标签的 width 属性HTML <table> 标签实例带有 400 像素宽度的表格:<table border="1" width="400"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr
HTML <table> 标签的 summary 属性HTML <table> 标签实例下面的例子定义了表格内容的摘要:<table border="1" summary="Monthly savings for the Flintstones family"> <tr>
HTML <table> 标签的 rules 属性HTML <table> 标签实例下面的例子规定只有行之间的边框是可见的:<table rules="rows"> <tr> <th>Month</th> <th>Savings</th> </tr>
HTML <table> 标签的 frame 属性HTML <table> 标签实例下面的例子规定只有围绕表格的边框是可见的:<table frame="box"> <tr> <th>Month</th> <th>Savings</th> </tr
HTML <table> 标签的 cellspacing 属性HTML <table> 标签实例下面的例子把表格单元格间距设置为 10 像素:<table border="8" cellspacing="10"> <tr> <th>Month</th>
HTML <table> 标签的 cellpadding 属性HTML <table> 标签实例下面的例子把表格单元边界与单元内容之间的间距设置为 10 像素:<table border="8" cellpadding="10"> <tr>
HTML <table> 标签的 border 属性HTML <table> 标签实例下面的例子把表格周围的边框设置为 8 像素宽:<table border="8"> <tr> <th>Month</th> <th>Savings</th> </t
HTML <table> 标签的 bgcolor 属性HTML <table> 标签实例带有背景颜色的 HTML 表格:<table border="1" bgcolor="#00FF00"> <tr> <th>Month</th> <th>Savings</th> <
HTML <table> 标签的 align 属性HTML <table> 标签实例一个右对齐的 HTML 表格:<table border="1" align="right"> <tr> <th>Month</th> <th>Savings</th> </tr> <t
HTML <script> 标签的 charset 属性HTML <script> 标签实例定义外部脚本文件中所使用的字符编码:<script type="text/javascript" src="myscripts.js" charset="UTF-8"></scr