Table表格的css样式代码详解 tableStyle.css

原文地址:https://www.jb51.net/article/220293.htm

漂亮的table表格样式css源码漂亮的table表格样

 

 

<html>
<head>
    <title></title>
    <style type="text/css">
        table {
            border-collapse: collapse;
            margin: 0 auto;
            text-align: center;
        }

            table td, table th {
                border: 1px solid #cad9ea;
                color: #666;
                height: 30px;
            }

            table thead th {
                background-color: #CCE8EB;
                width: 100px;
            }

            table tr:nth-child(odd) {
                background: #fff;
            }

            table tr:nth-child(even) {
                background: #F5FAFA;
            }
    </style>
</head>
<body>
    <table width="90%" class="table">
        <caption><h2>车间能源消耗比例</h2></caption>
        <thead>
            <tr>
                <th>车间</th>
                <th>产量</th>
                <th>电量</th>
                <th>单耗</th>
            </tr>
        </thead>
        <tr>
            <td>109</td>
            <td>13</td>
            <td>1.34</td>
            <td>213</td>
        </tr>
        <tr>
            <td>109</td>
            <td>13</td>
            <td>1.34</td>
            <td>213</td>
        </tr>
        <tr>
            <td>109</td>
            <td>13</td>
            <td>1.34</td>
            <td>213</td>
        </tr>
    </table>
</body>

</html>

 

posted @ 2022-12-11 02:09  kljhgbv  阅读(397)  评论(0编辑  收藏  举报