Advertisement
mindfriction

Making fixed offcanvas item overflow

May 8th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.19 KB | None | 0 0
  1. [class*="offcanvas-content-"] {
  2.   position:fixed;
  3.   top:0;
  4.   bottom:0;
  5.   overflow-y: scroll; /* has to be scroll, not auto */
  6.   -webkit-overflow-scrolling: touch; /* momentum scrolling */
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement