Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <script>
  2. document.getElementById("tablepress-10").addEventListener("scroll", function() {
  3. var translate = "translate(0," + this.scrollTop + "px)";
  4. this.querySelector("thead").style.transform = translate;
  5. });
  6. </script>
  7.  
  8. table tbody, table thead
  9. {
  10. display: block;
  11. }
  12.  
  13. table tbody
  14. {
  15. overflow: auto;
  16. height: 100px;
  17. }
  18.  
  19. table {
  20. width: 350px; /* can be dynamic */
  21. }
  22.  
  23. th
  24. {
  25. width: 75px;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement