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

HTML学习之表格属性

时间:2015-11-20 12:59:17      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:background   white   style   标签   元素   

表格的基本元素<table></table>  <tr>定义行标签</tr>   <td>定义列标签</td>  <th>表格内的表头单元格</th>

<thead>定义在thead下的标签不论在HTML代码中你放置在什么位置都会以表头形式显示</thead>

同理 <tbody></tbody>   以及<tfoot></tfoot>。 分别表示,表体,表脚。

<caption>表的标题</caption>

<colgroup>用来设置列的属性</colgroup>  通过style 中的background:white等来设置颜色。通过span 来设置显示哪一列或多列,通过<col>来占用一个占列符。

例:

<table border=1>

    <tr>

        <td>张三</td>

        <td>李四</td>

        <td>王五</td>

    </tr>

<thead>

<tr>

        <th>张三</th>

        <th>李四</th>

        <th>王五</th>

    </tr>

</thead>

<tr>

        <td>张三</td>

        <td>李四</td>

        <td>王五</td>

    </tr>

</table>





本文出自 “霸王别集” 博客,请务必保留此出处http://zhangtainren.blog.51cto.com/448826/1714897

HTML学习之表格属性

标签:background   white   style   标签   元素   

原文地址:http://zhangtainren.blog.51cto.com/448826/1714897

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