Make one section of simple web page have own scroll bar

后端 未结 5 1083
情歌与酒
情歌与酒 2021-02-19 21:25

I have a section of the web page I am building that is dedicated to news events. These are simply entered as follows currently.


    

        
5条回答
  •  眼角桃花
    2021-02-19 21:42

    Use CSS:

    .scrollbar {
      height: 100px;
      overflow: auto; // here is the magic :)
    }
    

提交回复
热议问题