Fix object to top of browser window when scrolling

前端 未结 7 771
迷失自我
迷失自我 2020-12-04 16:55

I saw recently a new interesting feature in the new gmail and also in the HTML5 bing preview that fixes a navigation bar to the top of the browser window when scrolling. The

7条回答
  •  粉色の甜心
    2020-12-04 17:19

    Use:

    #element {
      position: fixed;
      right: 200px;
      top: 200px;
    }
    

    "fixed" means the element is positioned relative to the browser window.

提交回复
热议问题