I want to fix the height of the page, that page does not have scroll. I use bootstrap for create layouts. I have a two column with the same width. And when column have many content then this column should have a scrollbar.
And i use next css styles:
body {
  height: 100%;
}
#left {
  height: 100%;
  position: fixed;
}
#right {
  height: 100%;
  position: fixed;
}
But this not have effect. How to achieve this?
 
     
     
    