Last active
November 26, 2020 10:47
-
-
Save kdssoftware/5d2185587f1bd51c984b9ea431f2c08c to your computer and use it in GitHub Desktop.
Scrollable table with sticky header. Only essentials css ( https://jsfiddle.net/xfoph4ne/ )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main{ | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
} | |
#content{ | |
height: 100%; | |
display: flex; | |
flex-direction: column; | |
} | |
.table-wrapper{ | |
overflow-y: scroll; | |
} | |
.table-wrapper th{ | |
position: sticky; | |
top: 0; | |
} | |
table{ | |
border-collapse: collapse; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main> | |
<div id="content"> | |
<p>content before</p> | |
<div class="table-wrapper"> | |
<table> | |
<thead> | |
<tr> | |
<th>Header</th> | |
<th>Header</th> | |
<th>Header</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Text</td> | |
<td>Text</td> | |
<td>Text</td> | |
</tr> | |
<!-- ... --> | |
<tr> | |
<td>Text</td> | |
<td>Text</td> | |
<td>Text</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
<div>content after</div> | |
</div> | |
</main> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment