runoops.com

HTML 参考手册 第32页

HTML title 标签

阅读(1598)

为您的 HTML 文档定义标题: 实例 Run this code » <html> <head> <meta charset="utf-8"> <title>文档标题</title&g...

HTML time 标签

阅读(1385)

如何定义时间和日期: 实例 Run this code » <p>我们在每天早上 <time>9:00</time> 开始营业。</p> <p>我在 <time dateti...

HTML thead 标签

阅读(1694)

带有 <thead>、<tfoot> 和 <tbody> 元素的 HTML 表格: 实例 Run this code » <table border="1"> <thead> &l...

HTML th 标签

阅读(1752)

一个简单的 HTML 表格,带有两个表头单元格和两个数据单元格: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <t...

HTML tfoot 标签

阅读(1693)

带有 <thead>、<tfoot> 和 <tbody> 元素的 HTML 表格: 实例 Run this code » <table border="1"> <thead> &l...

HTML template 标签

阅读(1470)

使用 <template> 标签在页面加载时该标签中的内容不会显示,加载后可以使用 JavaScript 来显示它: 实例 Run this code » <button onclick="showContent()"&g...

HTML textarea 标签

阅读(1556)

一个 HTML 文本区域: 实例 Run this code » <textarea rows="10" cols="30"> 我是一个文本框。 </textarea> 浏览器支持 所有主流浏览器都支持 <te...

HTML tbody 标签

阅读(2209)

带有 <thead>、<tfoot> 和 <tbody> 元素的 HTML 表格: 实例 Run this code » <table border="1"> <thead> &l...

HTML table 标签

阅读(1627)

一个简单的 HTML 表格,包含两列两行: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <th>Saving...

HTML sup 标签

阅读(1519)

上标文本: 实例 Run this code » <p>这个文本包含 <sup>上标</sup> 文本。</p> 浏览器支持 所有主流浏览器都支持 <sup> 标签。 标签定义及使...