码迷,mamicode.com
首页 > Web开发 > 详细

5、HTML 表格标签

时间:2021-02-02 11:31:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:一个   cin   表格   body   add   word   code   文本   class   

标准格式

    <table>
        <thead></thead>  表头(字段信息)
        <tbody></tbody>	 表单(数据信息)
    </table>

表头

<table>
        <thead>
            <tr>  tr表示一行
                <td>username</td>  正常文本
                <th>password</th>  加粗文本
                <th>favorite</th> 
            </tr>
        </thead>
        <tbody></tbody>
    </table>

表单

<table>
        <thead>
            <tr>
                <th>username</th>
                <th>password</th>
                <th>favorite</th>
            </tr>
        </thead>
        <tbody>   表单,一个tr一行
            <tr>
                <td>tobutomi</td>
                <td>123456</td>
                <td>code</td>
            </tr>
            <tr>
                <td>egan</td>
                <td>213213</td>
                <td>eat</td>
            </tr>
            <tr>
                <td>tutu</td>
                <td>21333</td>
                <td>football</td>
            </tr>
        </tbody>

table样式属性

border="1" 边框

cellpadding="5" 内边距

cellspacing="5" 外边距

<table border="1" cellpadding="5" cellspacing="5">

td 属性

rowspan="2" 占两行

colspan="2" 占两列

 <td rowspan="2" colspan="2">egan</td>

5、HTML 表格标签

标签:一个   cin   表格   body   add   word   code   文本   class   

原文地址:https://www.cnblogs.com/TobuTobu/p/14359841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!