首頁 > web前端 > css教學 > 您可以使用'position:sticky”將表頭黏在滾動 div 中嗎?

您可以使用'position:sticky”將表頭黏在滾動 div 中嗎?

DDD
發布: 2024-10-29 19:55:02
原創
625 人瀏覽過

Can you make a table header sticky within a scrolling div using 'position: sticky'?

滾動表Div 中的粘性標題

隨著最近在Webkit 中引入“position: Sticky”,開發人員正在探索其潛在用途。出現的一個問題是它是否可以用於在滾動 div 中維護表格的標題 (thead)。

概念

預設情況下,'position: Sticky' 將其功能限制於父元素,使其不適合這種特定場景。但是,可以利用「黏性定位」來達到所需的效果。

解決方案

要讓表頭黏在捲動div 內,您可以在樣式表中附加以下行:

thead th { position: sticky; top: 0; }
登入後複製

確保您的表格具有套用樣式所需的“thead”和“th”元素。

實作

<table>
    <thead>
        <tr>
            <th>column 1</th>
            <th>column 2</th>
            <th>column 3</th>
            <th>column 4</th>            
        </tr>    
    </thead>
    <tbody>
      // your body code
    </tbody>
</table>
登入後複製

對於「標題」中的多行,使用它來保持第一行的黏性:

thead tr:first-child th { position: sticky; top: 0; }
登入後複製

瀏覽器支援

截至2018 年3 月,「position: Sticky」在現代瀏覽器中得到了廣泛支援:https://caniuse.com/#feat=css-sticky

Credit

該解決方案最初由@ctf0 在2017 年12 月3 日的評論中提出。

以上是您可以使用'position:sticky”將表頭黏在滾動 div 中嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板