Skip to content

Instantly share code, notes, and snippets.

@henriquegogo
Created August 19, 2011 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save henriquegogo/1156876 to your computer and use it in GitHub Desktop.
Save henriquegogo/1156876 to your computer and use it in GitHub Desktop.
Scroll na TABLE
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