Created
January 21, 2018 18:36
-
-
Save sudikrt/a95d50b8dc134608e6968f038596e2e3 to your computer and use it in GitHub Desktop.
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
#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