Guest User

Untitled

a guest
Sep 4th, 2015
962
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. thead th {
  2.     height: 40px;
  3.     font-size:larger;
  4.  
  5.     text-align: left;
  6. }
  7.  
  8. thead, tbody, tr, td, th { display: block; }
  9.  
  10. tr:after {
  11.     content: ' ';
  12.     display: block;
  13.     visibility: hidden;
  14.     clear: both;
  15. }
  16.  
  17.  
  18. tbody {
  19.     display:block;
  20.     height: 560px;
  21.     width:1500px;
  22.     overflow-y: scroll;
  23.     overflow-x: scroll;
  24. }
  25.  
  26. td{
  27.     width:100px;
  28. }
  29.  
  30. tbody td, thead th {
  31.     width: 16%;
  32.     float: left;
  33. }
  34.  
  35. tbody::-webkit-scrollbar{
  36. width:10px;
  37. background-color: ghostwhite;
  38. }
  39.  
  40. tbody::-webkit-scrollbar-thumb{
  41. background-color: darkgray;
  42. border-radius:10px;
  43. -webkit-box-shadow: 0 0 6px black inset;
  44. }
  45.  
  46. tbody::-webkit-scrollbar-thumb:hover{
  47. background-color:#bf4649;
  48. border:1px solid #333333;
  49. }
  50.  
  51. tbody::-webkit-scrollbar-thumb:active{
  52. background-color:#a6393d;
  53. border:1px solid #333333;
  54. }
  55.  
  56. tbody::-webkit-scrollbar-track{
  57. border:1px gray solid;
  58. border-radius:10px;
  59. -webkit-box-shadow:0 0 6px gray inset;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment