/ Published in: HTML
URL: http://jsatt.blogspot.com
This is a sample HTML layout to show best layout when using Scrollable Table with Frozen Headers Sample
Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported
Expand |
Embed | Plain Text
<html> <head> <style type="text/css"> .scrollContainer{width: 400px; height: 100px; overflow:auto;} .scrollContainer table{width:100%;} .scrollContainer th{background:#ff9; border:1px solid #fc0;} .scrollContainer td{border:1px solid #9c0 </style> <!---jquery script here---> </head> <body> <div class="scrollContainer"> <table> <thead> <tr> </tr> </thead> <tbody> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </tbody> </table> </div> </body> </html>
You need to login to post a comment.
