亚洲国产精品人久久,亚洲va国产日韩欧美精品色婷婷,久久久久88色偷偷,免费人成黄页在线观看国际

17站長網(wǎng)

Html標(biāo)簽教程

HTML <!DOCTYPE> 聲明HTML <!--...--> 注釋標(biāo)簽HTML <bdi> 標(biāo)簽HTML <base> 標(biāo)簽HTML <b> 標(biāo)簽HTML <audio> 標(biāo)簽HTML <article> 標(biāo)簽HTML <aside> 標(biāo)簽HTML <area> 標(biāo)簽HTML <address> 標(biāo)簽HTML <abbr> 標(biāo)簽HTML <a> 標(biāo)簽HTML <cite> 標(biāo)簽HTML <canvas> 標(biāo)簽HTML <caption> 標(biāo)簽HTML <button> 標(biāo)簽HTML <br/> 標(biāo)簽HTML <body> 標(biāo)簽HTML <blockquote> 標(biāo)簽HTML <bdo> 標(biāo)簽HTML <command> 標(biāo)簽HTML <colgroup> 標(biāo)簽HTML <code> 標(biāo)簽HTML <col> 標(biāo)簽HTML <del> 標(biāo)簽HTML <details> 標(biāo)簽HTML <dd> 標(biāo)簽HTML <datalist> 標(biāo)簽HTML <em> 標(biāo)簽HTML <dt> 標(biāo)簽HTML <dl> 標(biāo)簽HTML <div> 標(biāo)簽HTML <dialog> 標(biāo)簽HTML <dfn> 標(biāo)簽HTML <header> 標(biāo)簽HTML <form> 標(biāo)簽HTML <head> 標(biāo)簽HTML <footer> 標(biāo)簽HTML <font> 標(biāo)簽HTML <figure> 標(biāo)簽HTML <figcaption> 標(biāo)簽HTML <embed> 標(biāo)簽HTML <fieldset> 標(biāo)簽HTML <kbd> 標(biāo)簽HTML <ins> 標(biāo)簽HTML <img> 標(biāo)簽HTML <input> 標(biāo)簽HTML <i> 標(biāo)簽HTML <hr> 標(biāo)簽HTML <html> 標(biāo)簽HTML <h1> - <h6> 標(biāo)簽HTML5 <hgroup>標(biāo)簽HTML <map> 標(biāo)簽HTML <link> 標(biāo)簽HTML <li> 標(biāo)簽HTML <label> 標(biāo)簽HTML <legend> 標(biāo)簽HTML <keygen> 標(biāo)簽HTML <object> 標(biāo)簽HTML <noscript> 標(biāo)簽HTML <meter> 標(biāo)簽HTML <nav> 標(biāo)簽HTML <meta> 標(biāo)簽HTML <menu> 標(biāo)簽HTML5 <mark> 標(biāo)簽HTML <option> 標(biāo)簽HTML <output> 標(biāo)簽HTML <optgroup> 標(biāo)簽HTML <ol> 標(biāo)簽HTML <rp> 標(biāo)簽HTML <rt> 標(biāo)簽HTML <q> 標(biāo)簽HTML <progress> 標(biāo)簽HTML <pre> 標(biāo)簽HTML <param> 標(biāo)簽HTML <p> 標(biāo)簽HTML <script> 標(biāo)簽HTML <samp> 標(biāo)簽HTML <s> 標(biāo)簽HTML <ruby> 標(biāo)簽HTML <style> 標(biāo)簽HTML <strong> 標(biāo)簽HTML <strike> 標(biāo)簽HTML <span> 標(biāo)簽HTML <source> 標(biāo)簽HTML <small> 標(biāo)簽HTML <select> 標(biāo)簽HTML <section> 標(biāo)簽HTML <tfoot> 標(biāo)簽HTML <th> 標(biāo)簽HTML <textarea> 標(biāo)簽HTML <td> 標(biāo)簽HTML <tbody> 標(biāo)簽HTML <table> 標(biāo)簽HTML <sup> 標(biāo)簽HTML <sub> 標(biāo)簽HTML <summary> 標(biāo)簽HTML <video> 標(biāo)簽HTML <var> 標(biāo)簽HTML <ul> 標(biāo)簽HTML <u> 標(biāo)簽HTML <tt> 標(biāo)簽HTML <track> 標(biāo)簽HTML <tr> 標(biāo)簽HTML <title> 標(biāo)簽HTML <time> 標(biāo)簽HTML <thead> 標(biāo)簽HTML <wbr> 標(biāo)簽

HTML <caption> 標(biāo)簽

html <caption> 標(biāo)簽用于定義表格的標(biāo)題

<caption> 標(biāo)簽必須直接放置到 <table> 標(biāo)簽之后

只能對每個表格定義一個標(biāo)題

通常這個標(biāo)題會被居中于表格之上,不過可以通過 css 屬性 "text-align" 和 "caption-side" 能用來設(shè)置標(biāo)題的對齊方式和顯示位置

屬性

屬性描述
align
left
right
top
bottom
html5 不支持
HTML 4.01 已廢棄
定義標(biāo)題的對齊方式


范例

帶有標(biāo)題的表格

<table border="1">
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>

HTML 4.01 與 HTML5 之間的差異

HTML5 不支持 align 屬性

HTML 4.01 已廢棄 align 屬性

返回頂部