tags:

views:

18

answers:

1

I am using chat feature of chat.stackoverflow.com... It's really amazing! I am curious, when I scroll the window, the right side of the chat room(div id="sidebar") didn't respond to the scroll event at all, how that can be achieved?

+3  A: 

Fixed positioning.

#sidebar {
    height: 100%;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 28%;
}
Joe Philllips
can you answer more accurately? How to write the css/html for that?
Bin Chen
Great, thank you!
Bin Chen