如果我们做一个网站,表格标签元素是必不可少的一部分,那么我们就来好好解析一下Table,tr,td,th这些表格标签元素怎么使用,使用的注意事项有什么。

table表格语法与结构

<table> 
    <tr> 
        <td>&nbsp;</td> 
        <td>&nbsp;</td> 
        <td>&nbsp;</td> 
    </tr> 
</table> 
或者
<table> 
    <tr> 
        <th>&nbsp;</th> 
        <th>&nbsp;</th> 
        <th>&nbsp;</th> 
    </tr> 
</table>
登录后复制

以上2个表格结构中td和th使用,没有区别均可使用。

table标签使用说明

比如,电子表格型的数据表格。

Table表格标签使用场景

table表格实际应用地方

Table tr td th表格使用案例

<table width="300" border="1" cellspacing="0"> 
    <tr> 
        <th>班级</th> 
        <th>日期</th> 
        <th>标题</th> 
    </tr> 
    <tr> 
        <td>一班</td> 
        <td>2012-5-10</td> 
        <td>标题1</td> 
    </tr> 
    <tr> 
        <td>二班</td> 
        <td>2012-5-20</td> 
        <td>标题2</td> 
    </tr> 
</table>
登录后复制

介绍了这么多相信大家对表格的标签元素也有了一定的认识与理解,更多精彩请关注Work网其它相关文章!

相关阅读:

怎样知道浏览器支不支持html5

html 的<header>标签需要怎么使用

HTML5的<footer>标签元素怎么使用

以上就是Table,tr,td,th这些表格标签元素怎么使用的详细内容,更多请关注Work网其它相关文章!

09-18 20:46