How to make a DIV scrollable instead of BODY?
Posted
by user353901
on Stack Overflow
See other posts from Stack Overflow
or by user353901
Published on 2010-05-30T08:04:51Z
Indexed on
2010/05/30
8:12 UTC
Read the original article
Hit count: 142
hi
I want my page's BODY not to be scrollable but a DIV inside the BODY should be scrollable. I have this in my css file:
body {
overflow:hidden
}
.mainSection {
overflow:scroll
}
but it doesn't work and the DIV doesn't become scrollabel (it just shows two disabled scroll bars for the DIV)!
© Stack Overflow or respective owner