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

html表格 第五节

时间:2015-06-18 23:55:37      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

表格:

<html>
<head>
    <title>表格实例</title>
</head>
<body>
<center>
    <h1><font color="blue">表格</font></h1>
    <hr width="80%" color="green"/>
    <table border="1" width="500px" cellpadding="5" cellspacing="1" align="center">
        <tr>
            <td colspan="4" align="center" >员工信息表</td>
        </tr>
        <tr>
            <th><font size="2">工号</font></th><th>姓名</th><th>性别</th><th>职位</th>
        </tr>
        <tr>
            <td>1</td><td>张三</td><td>男</td><td>经理</td>
        </tr>
        <tr>
            <td>2</td><td>李四</td><td>男</td><td>助理</td>
        </tr>
        <tr>
            <td>3</td><td>王五</td><td>女</td><td rowspan="2">秘书</td>
        </tr>
        <tr>
            <td>4</td><td>张小三</td><td>男</td>
        </tr>
        <tr>
            <td colspan="4" align="right" bgcolor="yellow">4条信息</td>
        </tr>
    </table>
</center>
</body>
</html>

 结果显示:

技术分享

html表格 第五节

标签:

原文地址:http://www.cnblogs.com/feilongblog/p/4587313.html

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