html怎麼實現表頭不動

2021-06-03 13:00:46

html實現表頭不動的方法:首先將內容要捲動的區域控制在tbody標籤中,並新增「overflow-y: auto;」樣式;然後給tr標籤新增「table-layout:fixed;」即可固定表頭。

本文操作環境:windows7系統、HTML5&&CSS3版、Dell G3電腦。

HTML table表格 固定表頭 tbody加捲軸

純CSS table表格 thead固定 tbody捲動效果

由於專案需要,在表格中,當資料量越來越多時,就會出現卷軸,而在捲動的過程中,預設情況下表格頭部會跟著表格內容一起捲動,導致看不到頭部對應的欄位名,影響體驗效果!

實現思路:

將內容要捲動的區域控制在 tbody 標籤中新增 overflow-y: auto; 樣式,給 tr 標籤新增 table-layout:fixed; (這是核心)樣式,由於 tbody 有了卷軸後,卷軸也要佔位,又會導致 tbody 和 thead 不對齊,所以在設定 tbody 的寬度時要把卷軸的寬度也加上【如果不想顯示卷軸的話,可以把卷軸的寬度設定為0px,卷軸就沒有了。

下面是效果圖,具體完整範例程式碼也在下面:

ea9c595ef649689e4faf18aaa23d281.png

完整範例程式碼:

<!DOCTYPE html>
<html>
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>純CSS table表格 thead固定 tbody捲動</title>
    <style>
        .table-box {
            margin: 100px auto;
            width: 1024px;
        }
 
        /* 卷軸寬度 */
        ::-webkit-scrollbar {
            width: 8px;
            background-color: transparent;
        }
 
        /* 卷軸顏色 */
        ::-webkit-scrollbar-thumb {
            background-color: #27314d;
        }
 
        table {
            width: 100%;
            border-spacing: 0px;
            border-collapse: collapse;
        }
 
        table caption{
            font-weight: bold;
            font-size: 24px;
            line-height: 50px;
        }
 
        table th, table td {
            height: 50px;
            text-align: center;
            border: 1px solid gray;
        }
 
        table thead {
            color: white;
            background-color: #38F;
        }
 
        table tbody {
            display: block;
            width: calc(100% + 8px); /*這裡的8px是卷軸的寬度*/
            height: 300px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
 
        table tfoot {
            background-color: #71ea71;
        }
 
        table thead tr, table tbody tr, table tfoot tr {
            box-sizing: border-box;
            table-layout: fixed;
            display: table;
            width: 100%;
        }
 
        table tbody tr:nth-of-type(odd) {
            background: #EEE;
        }
 
        table tbody tr:nth-of-type(even) {
            background: #FFF;
        }
 
        table tbody tr td{
            border-bottom: none;
        }
 
    </style>
</head>
 
<body>
    <section>
        <table cellpadding="0" cellspacing="0">
            <caption>純CSS table表格 thead固定 tbody捲動</caption>
            
            <thead>
                <tr>
                    <th>序 號</th>
                    <th>姓 名</th>
                    <th>年 齡</th>
                    <th>性 別</th>
                    <th>手 機</th>
                </tr>
            </thead>
 
            <tbody>
                <tr>
                    <td>001</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>女</td>
                    <td>Mobile</td>
                </tr>
                <tr>
                    <td>002</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>男</td>
                    <td>Mobile</td>
                </tr>
                <tr>
                    <td>003</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>女</td>
                    <td>Mobile</td>
                </tr>
                <tr>
                    <td>004</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>男</td>
                    <td>Mobile</td>
                </tr>
                <tr>
                    <td>005</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>女</td>
                    <td>Mobile</td>
                </tr>
                <tr>
                    <td>006</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>男</td>
                    <td>Mobile</td>
                </tr>
                <tr>
                    <td>007</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>女</td>
                    <td>Mobile</td>
                </tr>
                <tr>
                    <td>008</td>
                    <td>Name</td>
                    <td>28</td>
                    <td>男</td>
                    <td>Mobile</td>
                </tr>
            </tbody>
 
            <tfoot>
                <tr>
                    <td colspan="5">【table,thead,tbody,tfoot】 colspan:合併行, rowspan:合併列 </td>
                </tr>
            </tfoot>
        </table>
    </section>
</body>
 
</html>

【推薦學習:】

以上就是html怎麼實現表頭不動的詳細內容,更多請關注TW511.COM其它相關文章!