runoops.com

参考手册 第51页

HTML tbody align 属性

阅读(1048)

向右对齐 <tbody> 元素中的内容: 实例 Run this code » <table border="1" width="100%"> <thead> <tr> <th>M...

HTML table width 属性

阅读(2009)

带有 400 像素宽度的 HTML 表格: 实例 Run this code » <table border="1" width="400"> <tr> <th>Month</th> <...

HTML table summary 属性

阅读(1283)

下面的 HTML 表格定义了表格内容的摘要: 实例 Run this code » <table border="1" summary="Monthly savings for the Flintstones family"> ...

HTML table rules 属性

阅读(1236)

只显示行之间的边框: 实例 Run this code » <table rules="rows"> <tr> <th>Month</th> <th>Savings</th&...

HTML table frame 属性

阅读(1301)

只显示围绕表格的外侧边框: 实例 Run this code » <table frame="box"> <tr> <th>Month</th> <th>Savings</t...

HTML table cellspacing 属性

阅读(1295)

把表格单元格间距设置为 10 像素: 实例 Run this code » <table border="1" cellspacing="10"> <tr> <th>Month</th> &l...

HTML table cellpadding 属性

阅读(1530)

把表格单元边沿与单元内容之间的间距设置为 10 像素: 实例 Run this code » <table border="1" cellpadding="10"> <tr> <th>Month</...

HTML table border 属性

阅读(1705)

下面的 HTML 表格将显示围绕表格单元的边框: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <th>Sav...

HTML table bgcolor 属性

阅读(1195)

带有背景颜色的 HTML 表格: 实例 Run this code » <table border="1" bgcolor="#00FF00"> <tr> <th>Month</th> <...

HTML table align 属性

阅读(1246)

一个右对齐的 HTML 表格: 实例 Run this code » <table border="1" align="right"> <tr> <th>Month</th> <th&g...