Created
August 19, 2011 14:06
-
-
Save henriquegogo/1156876 to your computer and use it in GitHub Desktop.
Scroll na TABLE
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.grid { | |
position: relative; | |
display: block; | |
width: 100%; | |
height: 200px; | |
border-collapse: collapse; | |
} | |
table.grid thead { | |
position: absolute; | |
top: 0; | |
height: 24px; | |
} | |
table.grid tbody { | |
position: absolute; | |
top: 24px; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
overflow-y: scroll; | |
overflow-x: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment