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
2010-10-28 03:42:14
can you answer more accurately? How to write the css/html for that?
Bin Chen
2010-10-28 03:43:46
Great, thank you!
Bin Chen
2010-10-28 03:50:52