Advertisement
Guest User

Untitled

a guest
Jun 1st, 2015
2,442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.55 KB | None | 0 0
  1. .scrollable {
  2.   position: absolute;
  3.   width: 100%;
  4.   height: 100%;
  5.   top: 0;
  6.   bottom: 0;
  7.   left: 0;
  8.   right: 0;
  9. }
  10.  
  11. .scrollable-content {
  12.    width: 100%;
  13.    height: 100%;
  14.    overflow: auto;
  15.    -webkit-overflow-scrolling: touch;
  16. }
  17.  
  18. #tournaments-horizontal {
  19.     width: 100%;
  20.     height: 300px;
  21.     /*overflow-x:scroll;*/
  22.     white-space: nowrap;
  23.     -webkit-transform: translate3d(0,0,0);
  24.     transform: translate3d(0,0,0);
  25.     margin-left: 0px;
  26. }
  27.  
  28. .tournament-h-container {
  29.     width: 60%;
  30.     height: 80%;
  31.     background-color: gray;
  32.     display: inline-block;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement