簡體   English   中英

嘗試使用水平滾動條制作固定的表頭。 如何設置溢出:自動,但保持邊距透明?

[英]Trying to make fixed table headers with horizontal scroll bar. How to set overflow: auto, but keep margins transparent?

我正在嘗試制作一個具有固定標題和水平滾動功能的表,但要這樣做,我需要使“ section”的上邊距在這里的位置透明:

html, body {
    margin:0;
    padding:0;
    height:100%;
}
.section {
    position: relative;
    border: 1px solid #000;
    padding-top: 37px;
    background: #500;
    margin-top: 37px;
}

.container {
    margin-top: -37px;
    overflow-y: auto;
    height: 200px;
}
table {
    border-spacing: 0;
    width:100%;
}
td + td {
    border-left:1px solid #eee;
}
td, th {
    border-bottom:1px solid #eee;
    background: #ddd;
    color: #000;
    padding: 10px 25px;
}
th {
    height: 0;
    line-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    color: transparent;
    border: none;
    white-space: nowrap;
}
th div {
    position: absolute;
    margin-top:-37px;
    background: transparent;
    color: #fff;
    padding: 9px 25px;
    top: 0;
    margin-left: -25px;
    line-height: normal;
    border-left: 1px solid #800;
}
th:first-child div {
    border: none;
}

<div class="section">
    <div class="container">
        <table>
            <thead>
                <tr class="header">
                    <th>Table attribute name
                        <div>Table attribute name</div>
                    </th>
                    <th>Value
                        <div>Value</div>
                    </th>
                    <th>Description
                        <div>Description</div>
                    </th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>align</td>
                    <td>left, center, right</td>
                    <td>Not supported in HTML5. Deprecated in HTML 4.01. Specifies the alignment of a table according to surrounding text</td>
                </tr>
                <tr>
                    <td>bgcolor</td>
                    <td>rgb(x,x,x), #xxxxxx, colorname</td>
                    <td>Not supported in HTML5. Deprecated in HTML 4.01. Specifies the background color for a table</td>
                </tr>
                <tr>
                    <td>border</td>
                    <td>1,""</td>
                    <td>Specifies whether the table cells should have borders or not</td>
                </tr>
                <tr>
                    <td>cellpadding</td>
                    <td>pixels</td>
                    <td>Not supported in HTML5. Specifies the space between the cell wall and the cell content</td>
                </tr>
                <tr>
                    <td>cellspacing</td>
                    <td>pixels</td>
                    <td>Not supported in HTML5. Specifies the space between cells</td>
                </tr>
                <tr>
                    <td>frame</td>
                    <td>void, above, below, hsides, lhs, rhs, vsides, box, border</td>
                    <td>Not supported in HTML5. Specifies which parts of the outside borders that should be visible</td>
                </tr>
                <tr>
                    <td>rules</td>
                    <td>none, groups, rows, cols, all</td>
                    <td>Not supported in HTML5. Specifies which parts of the inside borders that should be visible</td>
                </tr>
                <tr>
                    <td>summary</td>
                    <td>text</td>
                    <td>Not supported in HTML5. Specifies a summary of the content of a table</td>
                </tr>
                <tr>
                    <td>width</td>
                    <td>pixels, %</td>
                    <td>Not supported in HTML5. Specifies the width of a table</td>
                </tr>
            </tbody>
        </table>
    </div>
</div>

https://jsfiddle.net/byB9d/6212/

預先感謝任何提出建議的人!

PS,請給我一個純CSS解決方案!

我決定刪除您的大多數CSS,以(希望)對這個問題給出更清晰的答案。 但是,我沒有更改您的任何html。

擺弄代碼

x滾動和寬度

此方法依賴於將“表”用作“ thead”和“ tbody”的容器。 “表格”將確定沿x軸的滾動。 因此,它具有“ overflow-x:auto”。 這樣,“ thead”可以在滾動表格時保持在“ tbody”上方。 (稍后說明)

此元素還確定表格將在您的網頁上占據的寬度。

為了使內容水平滾動,我們必須確保“ tbody”和“ thead”的總寬度大於“ table”的寬度。

最后,您還應該向單元格添加相同的寬度,以便標題正確顯示在數據上方。 為此,我對“ tr th:nth-​​child(1),tr td:nth-​​child(1)”應用了寬度(針對每一列)。

y滾動和高度

我們希望“ thead”保持在桌子上方。 即使我們滾動。 因此,我們僅將其轉換為塊元素。

“肢體”是另一個故事。 我們希望能夠垂直滾動它。 因此,我們添加了“ overflow-y:auto”,並為元素設置了固定的高度(否則它將下降並且不會滾動)。

桌子的總高度將是“ thead”和“ tbody”的高度。 “表將調整其大小以適合它”。

CSS(html與問題帖中的相同)

td, th {
    border-bottom:1px solid #eee;
    background: #ddd;
    color: #000;
    padding: 10px 25px;
}

th div{display: none;} /*why is this html even here!?!?*/

table {
    display: block;
    position: relative;
    border: 1px solid #000;   
    width: 75%;
    border-spacing: 0;
    margin: auto;
    overflow-x: auto;
}
thead{
    display: block;
    position: relative;
    width: 700px; /*total width of columns*/
}
tbody{
    display: block;
    position: relative;
    height: 250px;
    overflow-y: auto;
    width: 700px; /*total width of columns.*/
}
tr th:nth-child(1), tr td:nth-child(1){
    width: 100px;
}
tr th:nth-child(2), tr td:nth-child(2){
    width: 150px;
}
tr th:nth-child(3), tr td:nth-child(3){
    width: 450px;
}

PS:我想這就是你要問的。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM