How to fix a Div to top of page with CSS only

前端 未结 4 833
情歌与酒
情歌与酒 2020-12-12 15:18

I am writing a glossary page. I have the alphabet links on the top of the page. I want to keep the top of the page (including the alphabet links) fixed, whilst the section o

4条回答
  •  感情败类
    2020-12-12 16:17

    You can simply make the top div fixed:

    #top { position: fixed; top: 20px; left: 20px; }
    

提交回复
热议问题