1. ホーム
  2. Web プログラミング
  3. CSS/HTML

見栄えの良いテーブル表cssスタイルコードを推奨 詳細

2022-01-17 22:02:23

素敵なテーブルテーブルスタイルcssソースコード素敵なテーブルテーブルスタイル

ソースコード

<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>
                Percentage of energy consumption in the workshop</h2>
        </caption>
        <thead>
            <tr>
                <th>
                    Workshops
                </th>
                <th>
                    Capacity
                </th>
                <th>
                    Electricity
                </th>
                <th>
                    Single consumption
                </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>

この記事は、見栄えの良い表テーブルのCSSスタイルのコードの詳細については、このに導入され、より関連する見栄えの良い表テーブルのCSSスタイルのコンテンツをお勧めしますスクリプトハウスの過去の記事を検索するか、次の関連記事を参照してください続けるあなたは、よりスクリプトハウスをサポートしています願っています!.