runoops.com

参考手册 第47页

HTML th colspan 属性

阅读(1234)

下面的 HTML 表格中包含一个横跨两列的表头单元格: 实例 Run this code » <table border="1">   <tr>     <th colspan="2">Monthly S...

HTML th charoff 属性

阅读(1121)

把第一个表头单元的的内容与 "M" 字符向右二个字符的位置对齐: 实例 Run this code » <table border="1">   <tr>     <th align="char" char="...

HTML th char 属性

阅读(1161)

把第一个表头单元的的内容与 "M" 字符对齐: 实例 Run this code » <table border="1">   <tr>     <th align="char" char="M">Mon...

HTML th bgcolor 属性

阅读(1795)

给表头单元格添加背景颜色: 实例 Run this code » <table border="1">   <tr>     <th bgcolor="#FF0000">Month</th> ...

HTML th axis 属性

阅读(1031)

带有分类表头单元格的 HTML 表格: 实例 Run this code » <table border="1" width="100%">   <tr>     <th axis="name">Name...

HTML th align 属性

阅读(1347)

向左对齐表头单元格中的内容: 实例 Run this code » <table width="100%" border="1">   <tr>     <th align="left">Month<...

HTML th abbr 属性

阅读(1179)

在 HTML 表格中使用 abbr 属性: 实例 Run this code » <table border="1">   <tr>     <th abbr="Make">Toy manufacture...

HTML tfoot valign 属性

阅读(1181)

把 <tfoot> 元素中的内容垂直对齐到底部: 实例 Run this code » <table border="1" width="100%">     <tr>       <th>M...

HTML tfoot charoff 属性

阅读(1361)

把 <tfoot> 元素中的内容与字符 "." 向右两个字符的位置对齐: 实例 Run this code » <table border="1" width="100%">     <tr>      ...

HTML tfoot char 属性

阅读(1248)

把 <tfoot> 元素中的内容与字符 "." 对齐: 实例 Run this code » <table border="1" width="100%">     <tr>       <th&g...