开发者

SO chat: how to make the sidebar not respond to scroll event?

开发者 https://www.devze.com 2023-01-22 21:58 出处:网络
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 eve

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?


Fixed positioning.

#sidebar {
    height: 100%;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 28%;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消