0

I have a header and a footer, that should be position: fixed,
both have content that varies their height according to the page width, I need the content between them to be scroll-able and that the header & footer will not cover it.
here is an example (of the problem): http://jsfiddle.net/ilyaD/bNSZu/2/
Any ideas for a solution?

ilyo
  • 35,851
  • 46
  • 106
  • 159

2 Answers2

0

DEMO

Use max-height,min-height and height as percentages.Along with overflow-y:auto

Vivek Chandra
  • 4,240
  • 9
  • 33
  • 38
0

You can set a max-height to #main div and add this style to #main to fire the scroll bar

#main {
   overflow-y:auto; 
}

Working Fiddle

Prasenjit Kumar Nag
  • 13,391
  • 3
  • 45
  • 57