Skip to content

Instantly share code, notes, and snippets.

@sudikrt
Created January 21, 2018 18:36
Show Gist options
  • Save sudikrt/a95d50b8dc134608e6968f038596e2e3 to your computer and use it in GitHub Desktop.
Save sudikrt/a95d50b8dc134608e6968f038596e2e3 to your computer and use it in GitHub Desktop.
#table-wrapper {
position:relative;
}
#table-scroll {
height:150px;
overflow:auto;
margin-top:20px;
}
#table-wrapper table {
width:100%;
}
#table-wrapper table * {
color:black;
}
#table-wrapper table thead th .text {
position:absolute;
top:-20px;
z-index:2;
height:20px;
width:35%;
border:1px solid red;
}
<div id="table-wrapper">
<div id="table-scroll">
<table></table>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment