HTML table元素

來源:互聯網
上載者:User

標籤:技術   cheetah   doctype   div   alt   asi   html   example   href   

搬運,內容來自HTML Dog.

 

簡單樣本
<!DOCTYPE html><html>    <body>        <table>            <tr>                <td>Row 1, cell 1</td>                <td>Row 1, cell 2</td>                <td>Row 1, cell 3</td>            </tr>            <tr>                <td>Row 2, cell 1</td>                <td>Row 2, cell 2</td>                <td>Row 2, cell 3</td>            </tr>            <tr>                <td>Row 3, cell 1</td>                <td>Row 3, cell 2</td>                <td>Row 3, cell 3</td>            </tr>            <tr>                <td>Row 4, cell 1</td>                <td>Row 4, cell 2</td>                <td>Row 4, cell 3</td>            </tr>        </table>    </body></html>
The table element defines the table.The tr element defines a table row.The td element defines a data cell. These must be enclosed in tr tags, as shown above.

tr=table row=行

td=table date cell=列元素

 

樣本2
<!DOCTYPE html><html><head>    <meta charset="utf-8">    <title>Basic table</title>    <style>        td {            border: 1px solid #999;            padding: 0.1em 1em;        }    </style></head><body>    <table>        <tr>            <td>Cats</td>            <td>Dogs</td>            <td>Lemurs</td>        </tr>        <tr>            <td>Tiger</td>            <td>Grey Wolf</td>            <td>Indri</td>        </tr>        <tr>            <td>Cheetah</td>            <td>Cape hunting dog</td>            <td>Sifaka</td>        </tr>        <tr>            <td>Caracal</td>            <td>Red fox</td>            <td>Brown lemur</td>        </tr>        <tr>            <td>Wildcat</td>            <td>Fennec</td>            <td>Dwarf lemur</td>        </tr>    </table>    <!-- Link back to HTML Dog: -->    <p><a href="http://www.htmldog.com/examples/"><img src="http://www.htmldog.com/badge1.gif" alt="HTML Dog"></a></p></body></html>

 

HTML table元素

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.