欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

推薦一個(gè)好看Table表格的css樣式代碼詳解

 更新時(shí)間:2021年08月20日 14:51:06   作者:chelen_jak  
這篇文章主要介紹了推薦一個(gè)好看Table表格的css樣式代碼詳解,本篇文章通過(guò)簡(jiǎn)要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下

漂亮的table表格樣式css源碼漂亮的table表格樣式

源碼

<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>
                    產(chǎn)量
                </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>
        <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>

到此這篇關(guān)于推薦一個(gè)好看Table表格的css樣式代碼詳解的文章就介紹到這了,更多相關(guān)推薦一個(gè)好看Table表格的css樣式內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論