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
HTML <p> 标签的 align 属性HTML <p> 标签实例右对齐的段落:<p align="right">This is some text in a very short paragraph</p>亲自试一试定义和用法align 属性规定段落中
HTML <ol> 标签的 compact 属性HTML <ol> 标签实例在有序列表中使用 compact 属性:<ol compact="compact"> <li>HTML</li> <li>XHTML</li> <li>CSS</li></ol>亲自试一
HTML <object> 标签的重要属性 archive 属性因为性能方面的原因,可以选择预先下载包含一个或多个档案中的对象集。对基于 Java 的应用程序来说尤其是这样,在这些应用程序中,一
HTML <menu> type 属性HTML <menu> 标签实例带有两个菜单按钮("File" 和 "Edit")的工具栏,每个按钮都有一个带有一系列选项的下拉菜单:<menu type="toolbar"> <li> <menu label=
HTML <menu> label 属性HTML <menu> 标签实例带有两个菜单按钮("File" 和 "Edit")的工具栏,每个按钮都有一个带有一系列选项的下拉菜单:<menu type="toolbar"> <li> <menu label
HTML <link> 标签的 target 属性HTML <link> 标签实例在下面的例子中,会在新窗口中加载被链接文档:<head><link rel="parent" href="index.html" target="_blank" /></head>定