当前位置: 移动技术网 > IT编程>网页制作>CSS > 【代码笔记】Web-CSS-CSS Table(表格)

【代码笔记】Web-CSS-CSS Table(表格)

2019年01月23日  | 移动技术网IT编程  | 我要评论

一,效果图。

二,代码。

 

复制代码
<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <title>css table表格</title>
    <style>
    table {
        border-collapse: collapse;
        width: 100%;
    }
    
    table,
    th,
    td {
        border: 1px solid green;
    }
    
    th {
        height: 50px;
        background-color: green;
        color: white;
    }
    
    td {
        text-align: right;
        height: 50px;
        vertical-align: bottom;
        padding: 15px;
    }
    </style>
</head>

<body>
    <table>
        <tr>
            <th>firstname</th>
            <th>lastname</th>
        </tr>
        <tr>
            <td>peter</td>
            <td>griffin</td>
        </tr>
        <tr>
            <td>lois</td>
            <td>griffin</td>
        </tr>
    </table>
</body>

</html>
复制代码

 

参考资料:《菜鸟教程》

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网