Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <div class="row">
  2. <div class="col-lg-3">
  3. Fixed content
  4. </div>
  5. <div class="col-lg-9">
  6. Normal scrollable content
  7. </div>
  8.  
  9. </div>
  10.  
  11. <div class="row">
  12. <div class="col-lg-3 fixed">
  13. Fixed content
  14. </div>
  15. <div class="col-lg-9 scrollit">
  16. Normal scrollable content
  17. </div>
  18.  
  19. </div>
  20.  
  21. .fixed {
  22. position: fixed;
  23. width: 25%;
  24. }
  25. .scrollit {
  26. float: left;
  27. width: 71%
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement