开发者

Fix the whole page except one main content div

开发者 https://www.devze.com 2023-04-06 01:59 出处:网络
May I know how to fix the position of whole page and make it unmovable when u开发者_如何学Pythonser scroll except a div that shows the main content? Any css or jquery for this trick? Thanks.I think yo

May I know how to fix the position of whole page and make it unmovable when u开发者_如何学Pythonser scroll except a div that shows the main content? Any css or jquery for this trick? Thanks.


I think you could add position: fixed; to all div elements that you want to be scrolled with the page.

like:

    #example {     
    position: fixed;
    z-index: 10;
    }

So in brief: add this to everything except the main content div.

0

精彩评论

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